-
How to send email via PHPMailer – Linux server
Hello All,
In order to send email from Linux server from PHPMailer then one can use below mentioned sample script:
<?phprequire("class.phpmailer.php");
$mail = new PHPMailer();
?>
$mail->IsSMTP(); // send via SMTP
$mail->Host = "mail.yourdomainname"; // SMTP servers
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "SMTP Email Username"; // SMTP username
$mail->Password = "SMTP Email password"; // SMTP password
$mail->From = "From Email address";
$mail->FromName = "Name to Display";
$mail->AddAddress("Recipient Email address ","Recipient Name");
$mail->AddCC(“CC Email Address”);
$mail->AddBCC(“BCC Email address”);
$mail->AddReplyTo("Reply to email address");
$mail->WordWrap = 50; // set word wrap
$mail->IsHTML(true); // send as HTML
$mail->Subject = "Subject";
$mail->Body = "body";
if(!$mail->Send())
{
echo "Message did not sent <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
echo "Message has been sent";
Thanks,
Shane G.
AccuWebHosting.ComLast edited by Shane; 03-28-2009 at 02:26 AM.
-
Re: How to send email via PHPMailer – Linux server
Hello Shane,
Hey, that was really a great script.. I was searching for a long while. Thank you very much man.. But one thing, when I add the CC and BCC fields, it gives me the error. Hence I need to remove those fields. can you help it out?????
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)


LinkBack URL
About LinkBacks





Reply With Quote


