Guest User

Untitled

a guest
Jan 18th, 2019
445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. $mail->IsSMTP();
  2. $mail->SMTPDebug = 0;
  3. $mail->SMTPAuth = TRUE;
  4. $mail->SMTPSecure = "ssl";
  5. $mail->Port = 465;
  6. $mail->Username = "abc@gmail.com";
  7. $mail->Password = "*****";
  8. $mail->Host = "smtp.gmail.com";
  9. $mail->Mailer = "smtp";
  10. $mail->SetFrom("abc@mjsofttech.com", 'Admin');
  11. $mail->AddReplyTo("abc@mjsofttech.com", 'Admin');
  12. $mail->AddAddress($_POST['email']);
  13. $mail->Subject = $subject;
  14. $mail->WordWrap = 80;
  15.  
  16.  
  17. $mail->MsgHTML($msg);
  18. $mail->IsHTML(true);
  19. if (!$mail->Send()) {
  20. $this->view->status = 'invalid';
  21. }
Add Comment
Please, Sign In to add comment