Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- sendmail.php
- https://github.com/PHPMailer/PHPMailer
- <?php
- require_once('../PHPMailer/PHPMailerAutoload.php');
- $mail = new PHPMailer;
- //$mail->SMTPDebug = 3;// debugging: 1 = errors and messages, 2 = messages only // Enable verbose debug output
- $mail->isSMTP(); // Set mailer to use SMTP
- $mail->Host = 'smtp.gmail.com'; // Specify main and backup SMTP servers
- $mail->SMTPAuth = true; // Enable SMTP authentication
- $mail->Password = '*************'; // SMTP password
- $mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail // Enable TLS encryption, `ssl` also accepted
- $mail->Port = 465; // or 587 // TCP port to connect to
- //$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';
- if(!$mail->send()) {
- echo 'Message could not be sent.';
- echo 'Mailer Error: ' . $mail->ErrorInfo;
- } else {
- echo 'Message has been sent';
- }
Add Comment
Please, Sign In to add comment