Skip to content

Instantly share code, notes, and snippets.

@danieldsf
Created January 20, 2018 09:05
Show Gist options
  • Save danieldsf/271d18493e5646c787cced0912716c73 to your computer and use it in GitHub Desktop.
Save danieldsf/271d18493e5646c787cced0912716c73 to your computer and use it in GitHub Desktop.
<?php
App::uses('Component', 'Controller');
#App::uses('Vendor','phpmailer/phpmailer/class.phpmailer');
App::import('Vendor', 'phpmailer', array('file' => 'phpmailer'.DS.'phpmailer'.DS.'PHPMailerAutoload.php'));
class MailComponent extends Component {
public function send() {
$mail = new phpmailer();
//$mail->SMTPDebug = 3; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp-mail.outlook.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = '[email protected]'; // SMTP username
$mail->Password = 'linuxpdf193'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
$mail->setFrom('[email protected]', 'Mailer');
#$mail->addAddress('[email protected]', 'Joe User'); // Add a recipient
$mail->addAddress('[email protected]'); // Name is optional
//$mail->addReplyTo('[email protected]', 'Information');
//$mail->addCC('[email protected]');
//$mail->addBCC('[email protected]');
//$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
//$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
$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';
$feedback = $mail->send() ? 'Message has been sent' : 'Message could not be sent. Mailer Error: ' . $mail->ErrorInfo;
#if(!$mail->send()) {
# $feedback = 'Message could not be sent.'.'Mailer Error: ' . $mail->ErrorInfo;
#} else {
# $feedback = 'Message has been sent';
#}
return $feedback;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment