View previous topic :: View next topic |
Author |
Message |
mrpaul -
Joined: 23 Sep 2005 Posts: 18
|
Posted: Thu Oct 06, 2005 11:16 pm Post subject: Email with php |
|
|
i am trying to send email with php,
my php code is;
Quote: |
<?php
$to = "paulgrogan@hotmail.com";
$from = "janedoe@anotherfakedomain.com";
$subject = "This is a test email";
$message = "Dear paul,\n\nThis is a fake email, I hope you enjoy it.\n\nFrom Jane.";
$headers = "From: $from\r\n";
$success = mail($to, $subject, $message, $headers);
if ($success)
echo "The email to $to from $from was successfully sent";
else
echo "An error occurred when sending the email to $to from $from";
?>
|
now i dident expect that to work i know thers something to do with changeing the php.ini file ye?
well i used this tutoiral to set my php
http://www.aprelium.com/abyssws/php5win.html
so were is my php.ini file?
and what do i put in it?
ps if anyone knows of a free mail server pls say so |
|
Back to top |
|
 |
cmxflash -
Joined: 11 Dec 2004 Posts: 872
|
Posted: Fri Oct 07, 2005 12:15 am Post subject: |
|
|
Try changing
Code: | if ($success)
echo "The email to $to from $from was successfully sent";
else
echo "An error occurred when sending the email to $to from $from"; |
to
Code: | if ($success){
echo "The email to $to from $from was successfully sent";
}else{
echo "An error occurred when sending the email to $to from $from";
} |
|
|
Back to top |
|
 |
MonkeyNation -
Joined: 05 Feb 2005 Posts: 921 Location: Cardiff
|
Posted: Fri Oct 07, 2005 12:48 am Post subject: |
|
|
cmxflash wrote: | Try changing
Code: | if ($success)
echo "The email to $to from $from was successfully sent";
else
echo "An error occurred when sending the email to $to from $from"; |
to
Code: | if ($success){
echo "The email to $to from $from was successfully sent";
}else{
echo "An error occurred when sending the email to $to from $from";
} |
|
Ain't nothing wrong with that, doesn't need correcting.
And php.ini is most likely in C:/windows or The directory of the php inturpretter under windows, don't know anbout other OSes.
Search for sendmail and similar topics because I can't be arsed to quote someone explaining about mail servers and php. _________________
 |
|
Back to top |
 |
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
|
Back to top |
|
 |
mrpaul -
Joined: 23 Sep 2005 Posts: 18
|
Posted: Fri Oct 07, 2005 5:16 pm Post subject: |
|
|
So what do i put in it? |
|
Back to top |
|
 |
MonkeyNation -
Joined: 05 Feb 2005 Posts: 921 Location: Cardiff
|
|
Back to top |
 |
 |
|