|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
Confirmed User
Join Date: Aug 2005
Posts: 691
|
I need PHP help ASAP
I have a Submit Form ( implemented ) with '' browse '' picture upload on my website ready to go.
All I need is the form info along with the pictures uploaded sent to my email address. I would say a mysql database for storage but with spam it would shut down email. |
|
|
|
|
|
#2 |
|
Confirmed User
Join Date: Nov 2005
Location: Edmonton, AB
Posts: 190
|
What is your icq?
|
|
|
|
|
|
#3 |
|
Confirmed User
Join Date: Nov 2001
Location: MTL
Posts: 5,060
|
use the mail function...its pretty straight forward...ex:
Code:
$to = '[email protected]'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: [email protected]' . "\r\n" . 'Reply-To: [email protected]' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers);
__________________
mmm my sig was too big... no more cool animation but hey still! need php? ICQ: 94586959 |
|
|
|
|
|
#4 |
|
Confirmed User
Join Date: Aug 2005
Posts: 691
|
My ICQ is 334147994
I have the code but it wont go to my cox email address. if( $okNow ) { $to = "[email protected]"; //$to = "[email protected]"; $subject = "New Contact Info"; $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'Content-Length: '.strlen( $message ).'' . "\r\n"; $headers .= "From: [email protected]\r\n"; $headers .= "Cc: [email protected]\r\n"; $headers .= "Bcc: [email protected]\r\n"; if( !mail( $to, $subject, $message, $headers ) ) echo "Unable to retrieve email. Problem sending email!!"; else{ |
|
|
|
|
|
#5 |
|
Confirmed User
Industry Role:
Join Date: Sep 2002
Location: In your mind
Posts: 3,766
|
what do you think that tells you if it doesn't get to cox but does everywhere else?
|
|
|
|
|
|
#6 |
|
Confirmed User
Join Date: Aug 2005
Posts: 691
|
I dont know doot you tell me buddy ol pal?
I would like it to go to COX. So I thought it was a small error I am missing somewhere. |
|
|
|
|
|
#7 | |
|
Confirmed User
Industry Role:
Join Date: Sep 2002
Location: In your mind
Posts: 3,766
|
Quote:
|
|
|
|
|
|
|
#8 |
|
Confirmed User
Join Date: Aug 2005
Posts: 691
|
So why you think my cox email is tripping?
|
|
|
|
|
|
#9 |
|
Confirmed User
Join Date: Jan 2005
Location: United Kingdom
Posts: 7,990
|
It must have something to do with the fact that there is not enough header information, which causes the COX spamfilter to hold off the email.
|
|
|
|