Hi,

Did anyone used php mail function (on linux) to send email ?

I have done the required settings on the php.ini

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
sendmail_path = /usr/sbin/sendmail -t
sendmail_from = [email protected]

The sample mail file is

<?php
$to = "[email protected]";
$subject = "Training Registration";
$message = "Thank you for participating in the Technical Certification
training program.\n\n";
mail($to, $subject, $message);
?>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to