Advertisement
Guest User

Untitled

a guest
Feb 26th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. Fatal error: Class 'PHPMailer' not found in C:AppServwwwSolicitudesBEconexion.php on line 58
  2.  
  3. require_once('PHPMailer-master/PHPMailerAutoload.php');
  4. //require_once('/PHPMailer/class.phpmailer.php');
  5.  
  6. $mail = new PHPMailer;
  7.  
  8. $mail->IsSMTP();
  9. //$mail->SMTPDebug = 2;
  10. $mail->SMTPAuth = false;
  11. $mail->SMTPSecure = "tls";
  12. $mail->Host = "correo.domain.org.mx";
  13. $mail->Port = 25;
  14. $mail->Username = "julio.castor@domain.mx";
  15. $mail->Password = "pass";
  16. $mail->SetFrom('correo@domain.com', 'Julio Castor');
  17. $mail->Subject = $asunto;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement