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.

link|improve this question

52% accept rate
1  
Read Manual – diEcho Mar 17 '11 at 5:41
feedback

3 Answers

up vote 3 down vote accepted

Using mail() function it's possible. Remember mail function will not work in Local server.

<?php
$to      = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?> 
link|improve this answer
what if i need to send a email from local server. i mean is there any way to access the nearest mailing server and make it send mail for me. i mean i can find the address of a yahoo mailing server and then i use that server for mailing purposes... is this possible? – user590849 Mar 17 '11 at 5:42
You need to config SMTP on your local server. Take a look at this similar post, stackoverflow.com/questions/4652566/php-mail-setup-in-xampp – Muthu Kumaran Mar 17 '11 at 5:48
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!

"); } ?>

link|improve this answer
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

<?php
    include('Mail.php');

    $recipients = 'joe@example.com';

    $headers['From']    = 'richard@example.com';
    $headers['To']      = 'joe@example.com';
    $headers['Subject'] = 'Test message';

    $body = 'Test message';

    $smtpinfo["host"] = "smtp.server.com";
    $smtpinfo["port"] = "25";
    $smtpinfo["auth"] = true;
    $smtpinfo["username"] = "smtp_user";
    $smtpinfo["password"] = "smtp_password";


    // Create the mail object using the Mail::factory method
    $mail_object =& Mail::factory("smtp", $smtpinfo); 

    $mail_object->send($recipients, $headers, $body);
?> 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.