murp

cfmail setup for Google

Nov 11th, 2014
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cfset mailAttributes = {
  2. server="smtp.gmail.com",
  3. username="[email protected]",
  4. password="eatmyshorts",
  5. subject="Eat my shorts, man!"
  6. }
  7. />
  8.  
  9. <cfmail port="465" useSSL="true"
  10. attributeCollection="#mailAttributes#"
  11. >port 465, SSL enabled</cfmail>
  12.  
  13. <cfmail port="587" useTLS="true"
  14. attributeCollection="#mailAttributes#"
  15. >port 587, TLS enabled</cfmail>
  16.  
  17. <cfmail port="465" useSSL="true" useTLS="true"
  18. attributeCollection="#mailAttributes#"
  19. >port 465, SSL and TLS enabled</cfmail>
Add Comment
Please, Sign In to add comment