Hello All,
In order to send email from Linux server from PHPMailer then one can use below mentioned sample script:
<?php
require("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.Com
In order to send email from Linux server from PHPMailer then one can use below mentioned sample script:
<?php
require("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.Com
Comment