Skip to content

Instantly share code, notes, and snippets.

@davidgiesberg
Created March 19, 2012 21:34
Show Gist options
  • Save davidgiesberg/2127282 to your computer and use it in GitHub Desktop.
Save davidgiesberg/2127282 to your computer and use it in GitHub Desktop.
phplist CloudSMTP configuration
/** 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