Advertisement
Guest User

Untitled

a guest
Jan 25th, 2017
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. mail('someMail@gmail.com', 'Mon Sujet', 'test');
  2.  
  3. #
  4. # Config file for sSMTP sendmail
  5. #
  6. # The person who gets all mail for userids < 1000
  7. # Make this empty to disable rewriting.
  8. root=myMail@gmail.com
  9. # Example for relaying to Gmail servers
  10. mailhub=smtp.gmail.com:587
  11. AuthUser=myMail@gmail.com
  12. AuthPass=myPassword
  13. UseTLS=YES
  14. UseSTARTTLS=YES
  15.  
  16. # The place where the mail goes. The actual machine name is required no
  17. # MX records are consulted. Commonly mailhosts are named mail.domain.com
  18. mailhub=mail
  19.  
  20. # Where will the mail seem to come from?
  21. #rewriteDomain=
  22.  
  23. # The full hostname
  24. hostname=33842653d6db
  25.  
  26. # Are users allowed to set their own From: address?
  27. # YES - Allow the user to specify their own From: address
  28. # NO - Use the system generated From: address
  29. #FromLineOverride=YES
  30.  
  31. # sSMTP aliases
  32. #
  33. # Format: local_account:outgoing_address:mailhub
  34. #
  35. # Example: root:your_login@your.domain:mailhub.your.domain[:port]
  36. # where [:port] is an optional port number that defaults to 25.
  37. root:myMail@gmail.com:smtp.gmail.com:587
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement