Untitled
By: a guest | Apr 22nd, 2010 | Syntax:
PHP | Size: 1.10 KB | Hits: 277 | Expires: Never
/**
* Sets the SMTP hosts. All hosts must be separated by a
* semicolon. You can also specify a different port
* for each host by using this format: [hostname:port]
* (e.g. "smtp1.example.com:25;smtp2.example.com").
* Hosts will be tried in order.
* @var string
*/
public $Host = 'smtp.gmail.com';
/**
* Sets the default SMTP server port.
* @var int
*/
public $Port = 465;
/**
* Sets the SMTP HELO of the message (Default is $Hostname).
* @var string
*/
public $Helo = 'yourdomain.com';
/**
* Sets connection prefix.
* Options are "", "ssl" or "tls"
* @var string
*/
public $SMTPSecure = 'ssl';
/**
* Sets SMTP authentication. Utilizes the Username and Password variables.
* @var bool
*/
public $SMTPAuth = true;
/**
* Sets SMTP username.
* @var string
*/
public $Username = 'yourgoogleanalyticsaccountusername@yourdomain.com';
/**
* Sets SMTP password.
* @var string
*/
public $Password = 'yourgoogleanalyticsaccountpassword';