Guest User

Untitled

a guest
Nov 12th, 2017
584
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. $config = array(
  2. 'protocol'=>'smtp',
  3. 'smtp_host'=>'ssl://smtp.gmail.com',
  4. 'smtp_port'=>465,
  5. 'smtp_user'=>'username@gmail.com',
  6. 'smtp_pass'=>'password',
  7. 'mailtype'=>'text',
  8. 'charset'=>'iso-8859-1',
  9. 'smtp_timeout'=>'30',
  10. 'crlf'=>'rn',
  11. 'newline'=>'rn',
  12. 'wordwrap'=>TRUE
  13. );
  14. $this->load->library('email',$config);
  15.  
  16. 220 smtp.gmail.com ESMTP b36sm5736977edd.67 - gsmtp
  17.  
  18. hello: 250-smtp.gmail.com at your service, [86.180.98.185]
  19. 250-SIZE 35882577
  20. 250-8BITMIME
  21. 250-AUTH LOGIN PLAIN XOAUTH2 PLAIN-CLIENTTOKEN OAUTHBEARER XOAUTH
  22. 250-ENHANCEDSTATUSCODES
  23. 250-PIPELINING
  24. 250-CHUNKING
  25. 250 SMTPUTF8
  26.  
  27. Failed to authenticate password. Error: 535-5.7.8 Username and Password not accepted. Learn more at 535 5.7.8 https://support.google.com/mail/?p=BadCredentials b36sm5736977edd.67 - gsmtp
  28. Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.
  29.  
  30. User-Agent: CodeIgniter
  31. Date: Thu, 9 Nov 2017 10:22:00 +0000
  32. From: "Mike Heath" <msheath@btinternet.com>
  33. Return-Path: <msheath@btinternet.com>
  34. To: mike24heath@gmail.com
  35. Subject: =?ISO-8859-1?Q?=43=6F=6E=74=61=63=74=20=4D=65=73=73=61=67=65?=
  36. Reply-To: <msheath@btinternet.com>
  37. X-Sender: msheath@btinternet.com
  38. X-Mailer: CodeIgniter
  39. X-Priority: 3 (Normal)
  40. Message-ID: <5a042c4818341@btinternet.com>
  41. Mime-Version: 1.0
  42.  
  43.  
  44. Content-Type: text/plain; charset=ISO-8859-1
  45. Content-Transfer-Encoding: 8bit
Add Comment
Please, Sign In to add comment