Created
March 19, 2012 21:34
-
-
Save davidgiesberg/2127282 to your computer and use it in GitHub Desktop.
phplist CloudSMTP configuration
This file contains hidden or 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
/** PHPMailer 5.2.1 for phplist 2.10.17 */ | |
/** SNIPPED FROM class.phpmailer.php STARTING AT LINE 198 */ | |
public $Host = 'relay.cloudsmtp.com'; | |
/** | |
* Sets the default SMTP server port. | |
* @var int | |
*/ | |
public $Port = 587; | |
/** | |
* Sets the SMTP HELO of the message (Default is $Hostname). | |
* @var string | |
*/ | |
public $Helo = ''; | |
/** | |
* Sets connection prefix. | |
* Options are "", "ssl" or "tls" | |
* @var string | |
*/ | |
public $SMTPSecure = 'tls'; | |
/** | |
* Sets SMTP authentication. Utilizes the Username and Password variables. | |
* @var bool | |
*/ | |
public $SMTPAuth = true; | |
/** | |
* Sets SMTP username. | |
* @var string | |
*/ | |
public $Username = 'CLOUDSMTPUSERNAME'; | |
/** | |
* Sets SMTP password. | |
* @var string | |
*/ | |
public $Password = 'CLOUDSMTPPASSWORD'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment