Created
April 30, 2012 10:22
-
-
Save manifestuk/2557044 to your computer and use it in GitHub Desktop.
ExpressionEngine Config Settings for GMail SMTP (Hopefully)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$env_conf['mail_protocol'] = 'smtp'; | |
$env_conf['smtp_server'] = 'tls://smtp.gmail.com:XXX'; // Use :XXX to set the port number. | |
$env_conf['smtp_username'] = '[email protected]'; | |
$env_conf['smtp_password'] = 'xxx'; | |
$env_conf['email_newline'] = "\r\n"; | |
$env_conf['email_crlf'] = "\r\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment