forked from science-ation/science-ation
email_send should send html version of email if we have it, also dont translate the subject & body thorugh i18n()
This commit is contained in:
parent
dfb54ec9df
commit
b71a0dc994
@ -338,8 +338,10 @@ function email_send($val,$to,$sub_subject=array(),$sub_body=array()) {
|
|||||||
|
|
||||||
$q=mysql_query("SELECT * FROM emails WHERE val='$val'");
|
$q=mysql_query("SELECT * FROM emails WHERE val='$val'");
|
||||||
if($r=mysql_fetch_object($q)) {
|
if($r=mysql_fetch_object($q)) {
|
||||||
$subject=i18n($r->subject);
|
//we dont want to translate these -- the emails themselves should be bi-multi-lingual if they need to be.
|
||||||
$body=i18n($r->body);
|
$subject=$r->subject;
|
||||||
|
$body=$r->body;
|
||||||
|
$bodyhtml=$r->body;
|
||||||
|
|
||||||
/* Eventually we should just do this with communication_replace_vars() */
|
/* Eventually we should just do this with communication_replace_vars() */
|
||||||
if(count($sub_subject)) {
|
if(count($sub_subject)) {
|
||||||
@ -353,6 +355,13 @@ function email_send($val,$to,$sub_subject=array(),$sub_body=array()) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//do bodyhtml as well
|
||||||
|
if(count($sub_body)) {
|
||||||
|
foreach($sub_body AS $sub_k=>$sub_v) {
|
||||||
|
$bodyhtml=ereg_replace("\[$sub_k\]","$sub_v",$bodyhtml);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if($r->from)
|
if($r->from)
|
||||||
$fr=$r->from;
|
$fr=$r->from;
|
||||||
else if ($config['fairmanageremail'])
|
else if ($config['fairmanageremail'])
|
||||||
@ -363,7 +372,7 @@ function email_send($val,$to,$sub_subject=array(),$sub_body=array()) {
|
|||||||
//only send the email if we have a from
|
//only send the email if we have a from
|
||||||
if($fr) {
|
if($fr) {
|
||||||
//send using RMail
|
//send using RMail
|
||||||
email_send_new($to,$fr,$subject,$body);
|
email_send_new($to,$fr,$subject,$body,$bodyhtml);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
echo error(i18n("CRITICAL ERROR: email '%1' does not have a 'From' and the Fair Manager Email is not configured",array($val),array("email key name")));
|
echo error(i18n("CRITICAL ERROR: email '%1' does not have a 'From' and the Fair Manager Email is not configured",array($val),array("email key name")));
|
||||||
|
Loading…
Reference in New Issue
Block a user