Skip to content
Snippets Groups Projects
Commit 37b0d60a authored by Guillaume Heurtier's avatar Guillaume Heurtier
Browse files

FEAT #14152 TIME 2:00 format sender email only if mailer is smtp

parent 54ab39c9
No related branches found
No related tags found
No related merge requests found
...@@ -61,17 +61,19 @@ while ($state <> 'END') { ...@@ -61,17 +61,19 @@ while ($state <> 'END') {
$email->html_body = str_replace("\'", "'", $email->html_body); $email->html_body = str_replace("\'", "'", $email->html_body);
$email->html_body = str_replace("''", "'", $email->html_body); $email->html_body = str_replace("''", "'", $email->html_body);
if (empty($email->sender) && !empty((string)$mailerParams->mailfrom)) { if (((string)$mailerParams->type) == 'smtp') {
$email->sender = (string)$mailerParams->mailfrom; if (empty($email->sender) && !empty((string)$mailerParams->mailfrom)) {
} $email->sender = (string)$mailerParams->mailfrom;
}
if (substr($email->sender, 0, 1) != '<') { if (substr($email->sender, 0, 1) != '<') {
$email->sender = '<' . $email->sender; $email->sender = '<' . $email->sender;
} }
if (substr($email->sender, -1) != '>') { if (substr($email->sender, -1) != '>') {
$email->sender .= '>'; $email->sender .= '>';
}
} }
if ($email->sender <> '<>') { if ($email->sender <> '<>') {
$GLOBALS['mailer']->setReturnPath($email->sender); $GLOBALS['mailer']->setReturnPath($email->sender);
$GLOBALS['mailer']->setFrom($email->sender); $GLOBALS['mailer']->setFrom($email->sender);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment