PHP Classes

File: delayedmail.php

Recommend this page to a friend!
  Classes of Eustaquio Rangel de Oliveira Jr.   PHP Delayed Email class   delayedmail.php   Download  
File: delayedmail.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Delayed Email class
Queue email messages in files to send them later
Author: By
Last change: Update of delayedmail.php
Date: 2 months ago
Size: 422 bytes
 

Contents

Class file image Download
<?php
/**
 * Used when not using Composer, this can require all the needed classes.
 * PHP version 5.3
 *
 * @category Classes
 * @package DelayedMail
 * @author Eustáquio Rangel <eustaquiorangel@gmail.com>
 * @license http://www.gnu.org/licenses/gpl-2.0.html GPLv2
 * @link http://github.com/taq/delayedmail
 *
 */
require_once "src/Message.php";
require_once
"src/Server.php";
require_once
"src/Sender.php";
?>