i am using php to develop a website. i want to add mailing functionality to my website. i have wamp server installed in my computer. how do i send mail using php?
thank you in advance.
feedback
|
|
Using mail() function it's possible. Remember mail function will not work in Local server.
| |||||
feedback
|
|
$from = "Sandra Sender "; $to = "Ramona Recipient "; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; $host = "mail.example.com"; $username = "smtp_username"; $password = "smtp_password"; $headers = array ('From' => $from, 'To' => $to, 'Subject' => $subject); $smtp = Mail::factory('smtp', array ('host' => $host, 'auth' => true, 'username' => $username, 'password' => $password)); $mail = $smtp->send($to, $headers, $body); if (PEAR::isError($mail)) { echo(" " . $mail->getMessage() . " "); } else { echo("Message successfully sent! "); } ?> | |||
|
feedback
|
|
Also look into the PEAR mail package Pear Mail Page It seems to be a little more robust than the standard mail() function that is built in (if the standard function isn't adequate). Here is an excerpt from this page showing how it is used. PEAR Mail send() usage
| |||
|
feedback
|