34 lines
1.5 KiB
PHP
34 lines
1.5 KiB
PHP
|
|
<?php
|
||
|
|
require 'PHPMailerAutoload.php';
|
||
|
|
|
||
|
|
$mail = new PHPMailer;
|
||
|
|
|
||
|
|
$mail->isSMTP(); // Set mailer to use SMTP
|
||
|
|
$mail->Host = 'smtp.gmail.com'; // Specify main and backup server
|
||
|
|
$mail->SMTPAuth = true; // Enable SMTP authentication
|
||
|
|
$mail->Username = 'outtervision@gmail.com'; // SMTP username
|
||
|
|
$mail->Password = ''; // SMTP password
|
||
|
|
$mail->SMTPSecure = 'tls'; // Enable encryption, 'ssl' also accepted
|
||
|
|
$mail->Port = 587; //Set the SMTP port number - 587 for authenticated TLS
|
||
|
|
$mail->setFrom('status@haba.pl', 'Amit Agarwal'); //Set who the message is to be sent from
|
||
|
|
$mail->addAddress('outtervision@gmail.com', 'Josh Adams'); // Add a recipient
|
||
|
|
|
||
|
|
$mail->WordWrap = 50; // Set word wrap to 50 characters
|
||
|
|
|
||
|
|
$mail->isHTML(true); // Set email format to HTML
|
||
|
|
|
||
|
|
$mail->Subject = 'Here is the subject';
|
||
|
|
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
|
||
|
|
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
|
||
|
|
|
||
|
|
//Read an HTML message body from an external file, convert referenced images to embedded,
|
||
|
|
//convert HTML into a basic plain-text alternative body
|
||
|
|
//$mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__));
|
||
|
|
|
||
|
|
if(!$mail->send()) {
|
||
|
|
echo 'Message could not be sent.';
|
||
|
|
echo 'Mailer Error: ' . $mail->ErrorInfo;
|
||
|
|
exit;
|
||
|
|
}
|
||
|
|
|
||
|
|
echo 'Message has been sent';
|