Your IP : 216.73.216.65


Current Path : /home/ataenra/www/ATA/INTRANET/Outils/chantier/lib/interfaces/
Upload File :
Current File : /home/ataenra/www/ATA/INTRANET/Outils/chantier/lib/interfaces/IEmail.php

<?php
/**
* Interface for sending emails
* @author Nick Korbel <lqqkout13@users.sourceforge.net>
* @version 03-23-06
* @package Interfaces
*
* Copyright (C) 2003 - 2007 phpScheduleIt
* License: GPL, see LICENSE
*/

$basedir = dirname(__FILE__) . '/../..';
require_once($basedir . '/lib/PHPMailer.class.php');

class IEmail 
{
	var $_mailer = null;
	
	function send() {
		die('Not implemented');
	}
	
	function addAddress($address, $name = '') {
		die('Not implemented');
	}
	
	function addCC($address, $name = '') {
		die('Not implemented');
	}
	
	function addBCC($address, $name = '') {
		die('Not implemented');
	}
	
	function isHTML($isHtml = false) {
		die('Not implemented');
	}
	
	function setFrom($address, $name = '') {
		die('Not implemented');
	}
	
	function setSubject($subject) {
		die('Not implemented');
	}
	
	function setBody($body) {
		die('Not implemented');
	}
}
?>