Advertisement
Guest User

Untitled

a guest
Jul 7th, 2017
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. MAIL_DRIVER=smtp
  2. MAIL_HOST=smtp.mailtrap.io
  3. MAIL_PORT=465
  4. MAIL_USERNAME=64a0ce9dbd553d
  5. MAIL_PASSWORD=xxxxxxxxxxxxxx
  6. MAIL_ENCRYPTION=
  7.  
  8. public $title;
  9.  
  10. /**
  11. * Create a new message instance.
  12. *
  13. * @return void
  14. */
  15. public function __construct($title)
  16. {
  17. $this->title = $title;
  18. }
  19.  
  20. /**
  21. * Build the message.
  22. *
  23. * @return $this
  24. */
  25. public function build()
  26. {
  27. return $this->from('vinicius@comerciourbano.com.br')
  28. ->view('email.mymail');
  29. }
  30.  
  31. Connection could not be established with host smtp.mailtrap.io [Failed to parse address "user/pass://smtp.mailtrap.io:2525" #0]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement