Guest User

Untitled

a guest
Aug 5th, 2018
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <?php
  2. require '../phpmailer/PHPMailerAutoload.php';
  3. $mail=new PHPmailer;
  4.  
  5. $mail->isSMTP();
  6. $mail->Host='gator4025.hostgator.com';
  7. $mail->Port=465;
  8. $mail->SMTPAuth=true;
  9. $mail->SMTPSecure='ssl';
  10.  
  11. $mail->Username='comercial@tecflucol.com';
  12. $mail->Password='mypass';
  13.  
  14. $mail->setFrom('comercial@tecflucol.com','Solicitudes Tecflucol');
  15. $mail->Sender='comercial@tecflucol.com';
  16. $mail->addReplyTo('comercial@tecflucol.com','Solicitudes Tecflucol');
  17. $mail->addAddress(prueba125474522@hotmail.com);
  18. $mail->isHTML(false);
  19. $mail->Subject='Confirmacion solicitud de instalacion de agua numero: '.$nuevo_id;
  20. $mail->Body='Has realizado una solicitud de instalacion de agua para su hogar, con numero : '.$nuevo_id."rn"."rn".
  21. 'Le estaremos contactando al numero proporcionado: '.$celular."rn".
  22. 'Gracias por usar nuestros servicios'."rn".
  23. 'Cordialmente:'."rn".
  24. 'Tecflucol';
  25.  
  26. if(!$mail->Send()) {
  27. echo "Mensaje no enviado <br />PHPMailer Error: " . $email->ErrorInfo;
  28. }
  29. else {
  30. echo "Mensaje enviado";
  31. }
  32. ?>
Add Comment
Please, Sign In to add comment