Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?php
  2. /**
  3. * Constructor
  4. * @param boolean $exceptions Should we throw external exceptions?
  5. */
  6. public function __construct($exceptions = false)
  7. {
  8. $this->exceptions = ($exceptions == true);
  9.  
  10. // Mailtrap settings
  11. $this->isSMTP();
  12. $this->Host = 'mailtrap.io';
  13. $this->SMTPAuth = true;
  14. $this->Username = '333sfsfd45dsg'; // your mailtrap username. This is not real
  15. $this->Password = '8sfsfd73452352'; // your mailtrap password. This is not real
  16. $this->SMTPSecure = 'tls';
  17. $this->Port = 2525;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement