Last active
December 24, 2019 16:28
-
-
Save niravmadariya/5cce1e51a99cdeeec8e64ca94fa1a416 to your computer and use it in GitHub Desktop.
Send mails using PHPMailer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Import PHPMailer classes into the global namespace | |
// These must be at the top of your script, not inside a function | |
use PHPMailer\PHPMailer\PHPMailer; | |
use PHPMailer\PHPMailer\Exception; | |
//Load Composer's autoloader | |
require 'PHPMailer/autoload.php'; | |
$mail = new PHPMailer(true); // Passing `true` enables exceptions | |
try { | |
//Server settings | |
$mail->SMTPDebug = 2; // Enable verbose debug output | |
$mail->isSMTP(); // Set mailer to use SMTP | |
$mail->Host = 'smtp1.niravmadariya.com;smtp2.niravmadariya.com'; // Specify main and backup SMTP servers | |
$mail->SMTPAuth = true; // Enable SMTP authentication | |
$mail->Username = '[email protected]'; // SMTP username | |
$mail->Password = 'AV3ry$tr0ngP@s5woRd'; // SMTP password | |
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted | |
$mail->Port = 587; // TCP port to connect to | |
//Recipients | |
$mail->setFrom('[email protected]', 'AutoMailer'); | |
$mail->addAddress('[email protected]', 'Nirav Madariya'); // Add a recipient | |
$mail->addAddress('[email protected]'); // Name is optional | |
$mail->addReplyTo('[email protected]', 'Query'); | |
$mail->addCC('[email protected]'); | |
$mail->addBCC('[email protected]'); | |
//Attachments | |
$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name | |
//Content | |
$mail->isHTML(true); // Set email format to HTML | |
$mail->Subject = 'This is ridiculous'; | |
$mail->Body = 'This is the ridiculous message body <b>in bold!</b>'; | |
$mail->AltBody = 'This is the body for non-ridiculous mail clients'; | |
$mail->send(); | |
echo 'Message has been sent'; | |
} catch (Exception $e) { | |
echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment