Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2010
734
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.10 KB | None | 0 0
  1.  /**
  2.    * Sets the SMTP hosts.  All hosts must be separated by a
  3.    * semicolon.  You can also specify a different port
  4.    * for each host by using this format: [hostname:port]
  5.    * (e.g. "smtp1.example.com:25;smtp2.example.com").
  6.    * Hosts will be tried in order.
  7.    * @var string
  8.    */
  9.   public $Host          = 'smtp.gmail.com';
  10.  
  11.   /**
  12.    * Sets the default SMTP server port.
  13.    * @var int
  14.    */
  15.   public $Port          = 465;
  16.  
  17.   /**
  18.    * Sets the SMTP HELO of the message (Default is $Hostname).
  19.    * @var string
  20.    */
  21.   public $Helo          = 'yourdomain.com';
  22.  
  23.   /**
  24.    * Sets connection prefix.
  25.    * Options are "", "ssl" or "tls"
  26.    * @var string
  27.    */
  28.   public $SMTPSecure    = 'ssl';
  29.  
  30.   /**
  31.    * Sets SMTP authentication. Utilizes the Username and Password variables.
  32.    * @var bool
  33.    */
  34.   public $SMTPAuth      = true;
  35.  
  36.   /**
  37.    * Sets SMTP username.
  38.    * @var string
  39.    */
  40.   public $Username      = 'yourgoogleanalyticsaccountusername@yourdomain.com';
  41.  
  42.   /**
  43.    * Sets SMTP password.
  44.    * @var string
  45.    */
  46.   public $Password      = 'yourgoogleanalyticsaccountpassword';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement