Login   Register  
PHP Classes
elePHPant
Icontem

File: SMTPs.ini.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Randy Martinsen  >  SMTPs  >  SMTPs.ini.php  >  Download  
File: SMTPs.ini.php
Role: Configuration script
Content type: text/plain
Description: Configuration for SMTP Mail server
Class: SMTPs
Compose and send e-mail messages via SMTP
Author: By
Last change:
Date: 2007-07-05 09:27
Size: 278 bytes
 

Contents

Class file image Download
<?php

//Your SMTP mail server information goes here

    
$this->_smtpsHost   'localhost';
    
$this->_smtpsID     'user@web.com';
    
$this->_smtpsPW     'password';
    
$this->_smtpsPort   '25'//587 or 25;
    
$this->_msgReplyTo  'reply@web.com';


?>