Emails
eFiction way
e107 way
emailer.php
if (!defined('e107_INIT')) { exit; }
function sendemail($to_name,$to_email,$from_name,$from_email,$subject,$message,$type="plain",$cc="",$bcc="") {
$eml = array();
$eml['email_subject'] = $subject;
$eml['send_html'] = true;
$eml['email_body'] = $message;
$eml['template'] = 'default';
// $eml['sender_email'] = $from_email; always $pref['replyto_email']
// $eml['sender_name'] = $from_name; always $pref['replyto_name']
$eml['cc'] = $cc;
$eml['bcc'] = $bcc;
if($type == 'plain') {
$eml['template'] = 'textonly';
$eml['send_html'] = false;
} //texthtml
if(e107::getEmail()->sendEmail($to_email, $to_name, $eml))
{
return true;
}
else
{
return false;
}
}
report.php
Form updated:
Other areas:
Last updated