Skip to content

Instantly share code, notes, and snippets.

View erandirjunior's full-sized avatar

Erandir Junior erandirjunior

View GitHub Profile
@erandirjunior
erandirjunior / PHPMailer
Created July 6, 2016 20:41
Código para enviar e-mail pelo PHPMailer
require_once 'PHPMailerAutoload.php';
$mail = new PHPMailer();
$mail->isSMTP();
$mail->Host = "smtp.gmail.com";
$mail->Port = 587;
$mail->SMTPSecure = 'tls';
$mail->SMTPAuth = true;
$mail->Username = "";
$mail->Password = "";