Search found 4 matches

by freelancelote
Mon Mar 02, 2009 5:20 am
Forum: PHP - Code
Topic: send an email script
Replies: 6
Views: 125

Re: send an email script

agriz wrote:
agriz wrote:

Code: Select all

if(mail($to,$subject,$message,$headers)){
    echo "Mail sent..";
}
 
Try this and reply with your output.

Thanks

Did you see the word "Mail Sent"
Yes, I did see the "mail sent" part but received no mail.
by freelancelote
Mon Mar 02, 2009 5:09 am
Forum: PHP - Code
Topic: send an email script
Replies: 6
Views: 125

Re: send an email script

Hi,
thanks nrreddy. This doesn't work either. I just get the echo mail sent but no mail on my inbox.
by freelancelote
Mon Mar 02, 2009 4:57 am
Forum: PHP - Code
Topic: send an email script
Replies: 6
Views: 125

Re: send an email script

Hi,
thanks agriz for the answer but I had no luck.
by freelancelote
Mon Mar 02, 2009 4:22 am
Forum: PHP - Code
Topic: send an email script
Replies: 6
Views: 125

send an email script

Hi, I'm trying to set a send an email script on my index.php page. As it happens I tried the following script that I found doing some search: <html> <head> <title>PHP Mail Array Loop</title> </head> <body> <?php $to = "somename@domain.com"; $subject = "Test mail"; $message = &quo...