You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
968 B
37 lines
968 B
<?php
|
|
|
|
//error_reporting(E_ALL);
|
|
error_reporting(E_STRICT);
|
|
|
|
|
|
date_default_timezone_set('America/Toronto');
|
|
//date_default_timezone_set(date_default_timezone_get());
|
|
|
|
include_once('class.phpmailer.php');
|
|
|
|
$mail = new PHPMailer();
|
|
$body = $mail->getFile('contents.html');
|
|
$body = eregi_replace("[\]",'',$body);
|
|
|
|
$mail->IsSendmail(); // telling the class to use SendMail transport
|
|
|
|
$mail->From = "name@yourdomain.com";
|
|
$mail->FromName = "First Last";
|
|
|
|
$mail->Subject = "PHPMailer Test Subject via smtp";
|
|
|
|
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
|
|
|
|
$mail->MsgHTML($body);
|
|
|
|
$mail->AddAddress("whoto@otherdomain.com", "John Doe");
|
|
|
|
$mail->AddAttachment("images/phpmailer.gif"); // attachment
|
|
|
|
if(!$mail->Send()) {
|
|
echo "Mailer Error: " . $mail->ErrorInfo;
|
|
} else {
|
|
echo "Message sent!";
|
|
}
|
|
|
|
?>
|
|
|