PHP Classes

File: SMTPs.ini.php

Recommend this page to a friend!
  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: 16 years ago
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';


?>