mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 05:31:42 +00:00
replace placeholders in email header and footer
This commit is contained in:
parent
514bdb88da
commit
c17bd81148
|
@ -8,6 +8,7 @@
|
||||||
- do not check for Log.php during installation anymore, it's part of the
|
- do not check for Log.php during installation anymore, it's part of the
|
||||||
vendor directory anyway
|
vendor directory anyway
|
||||||
- fix uploading documents from drop folder
|
- fix uploading documents from drop folder
|
||||||
|
- replace placeholders in email body header and footer
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
Changes in version 5.1.11
|
Changes in version 5.1.11
|
||||||
|
|
|
@ -106,8 +106,8 @@ class SeedDMS_EmailNotify extends SeedDMS_Notify {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$message = getMLText("email_header", array(), "", $lang)."\r\n\r\n".getMLText($message, $params, "", $lang);
|
$message = getMLText("email_header", $params, "", $lang)."\r\n\r\n".getMLText($message, $params, "", $lang);
|
||||||
$message .= "\r\n\r\n".getMLText("email_footer", array(), "", $lang);
|
$message .= "\r\n\r\n".getMLText("email_footer", $params, "", $lang);
|
||||||
|
|
||||||
$headers = array ();
|
$headers = array ();
|
||||||
$headers['From'] = $from;
|
$headers['From'] = $from;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user