Позволяет иметь небольшую трещину в этом:)
class Emailer
{
var $recipients = array();
var $EmailTemplate;
var $EmailContents;
public function __construct($to = false)
{
if($to !== false)
{
if(is_array($to))
{
foreach($to as $_to){ $this->recipients[$_to] = $_to; }
}else
{
$this->recipients[$to] = $to; //1 Recip
}
}
}
function SetTemplate(EmailTemplate $EmailTemplate)
{
$this->EmailTemplate = $EmailTemplate;
}
function send()
{
$this->EmailTemplate->compile();
//your email send code.
}
}
Обратите внимание на функцию SetTemplate()
...
Вот небольшой класс шаблона
class EmailTemplate
{
var $variables = array();
var $path_to_file= array();
function __construct($path_to_file)
{
if(!file_exists($path_to_file))
{
trigger_error('Template File not found!',E_USER_ERROR);
return;
}
$this->path_to_file = $path_to_file;
}
public function __set($key,$val)
{
$this->variables[$key] = $val;
}
public function compile()
{
ob_start();
extract($this->variables);
include $this->path_to_file;
$content = ob_get_contents();
ob_end_clean();
return $content;
}
}
Вот небольшой пример, вам все еще нужно сделать ядро скрипта, но это обеспечит вам хороший макет, с которого можно начать.
$emails = array(
'bob@bobsite.com',
'you@yoursite.com'
);
$Emailer = new Emailer($emails);
//More code here
$Template = new EmailTemplate('path/to/my/email/template');
$Template->Firstname = 'Robert';
$Template->Lastname = 'Pitt';
$Template->LoginUrl= '/2419440/otpravit-pismo-s-shablonom-ispolzuya-php';
//...
$Emailer->SetTemplate($Template); //Email runs the compile
$Emailer->send();
Это действительно все, что нужно, просто нужно знатькак использовать объекты и все довольно просто, ooh и шаблон будет выглядеть примерно так:
Welcome to my site,
Dear <?php echo $Firstname ?>, You have been registered on our site.
Please visit <a href="<?php echo $LoginUrl ?>">This Link</a> to view your upvotes
Regards.