Add explicit parameters to Sender::send() method signature
This commit is contained in:
parent
ea9d3b7438
commit
915abe8a33
|
@ -610,17 +610,10 @@ function notification($params)
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// use the Emailer class to send the message
|
// use the Emailer class to send the message
|
||||||
return DI::emailer()->send([
|
return DI::emailer()->send($sender_name, $sender_email, $sender_email, $params['to_email'],
|
||||||
'uid' => $params['uid'],
|
$datarray['subject'], $email_html_body, $email_text_body,
|
||||||
'fromName' => $sender_name,
|
$datarray['headers'], $params['uid']
|
||||||
'fromEmail' => $sender_email,
|
);
|
||||||
'replyTo' => $sender_email,
|
|
||||||
'toEmail' => $params['to_email'],
|
|
||||||
'messageSubject' => $datarray['subject'],
|
|
||||||
'htmlVersion' => $email_html_body,
|
|
||||||
'textVersion' => $email_text_body,
|
|
||||||
'additionalMailHeader' => $datarray['headers']
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
15
mod/item.php
15
mod/item.php
|
@ -806,17 +806,10 @@ function item_post(App $a) {
|
||||||
}
|
}
|
||||||
$link = '<a href="' . DI::baseUrl() . '/profile/' . $a->user['nickname'] . '"><img src="' . $author['thumb'] . '" alt="' . $a->user['username'] . '" /></a><br /><br />';
|
$link = '<a href="' . DI::baseUrl() . '/profile/' . $a->user['nickname'] . '"><img src="' . $author['thumb'] . '" alt="' . $a->user['username'] . '" /></a><br /><br />';
|
||||||
$html = Item::prepareBody($datarray);
|
$html = Item::prepareBody($datarray);
|
||||||
$message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';
|
$message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';;
|
||||||
$params = [
|
DI::emailer()->send($a->user['username'], $a->user['email'], $a->user['email'], $addr,
|
||||||
'fromName' => $a->user['username'],
|
$subject, $message, HTML::toPlaintext($html . $disclaimer)
|
||||||
'fromEmail' => $a->user['email'],
|
);
|
||||||
'toEmail' => $addr,
|
|
||||||
'replyTo' => $a->user['email'],
|
|
||||||
'messageSubject' => $subject,
|
|
||||||
'htmlVersion' => $message,
|
|
||||||
'textVersion' => HTML::toPlaintext($html.$disclaimer)
|
|
||||||
];
|
|
||||||
DI::emailer()->send($params);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,9 @@ class Emailer
|
||||||
* @return bool
|
* @return bool
|
||||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||||
*/
|
*/
|
||||||
public function send(array $params)
|
public function send(string $fromName, string $fromEmail, string $replyTo, string $toEmail,
|
||||||
|
string $subject, string $msgHtml, string $msgText,
|
||||||
|
string $additionalMailHeader = '', int $uid = null)
|
||||||
{
|
{
|
||||||
$params['sent'] = false;
|
$params['sent'] = false;
|
||||||
|
|
||||||
|
@ -42,12 +44,12 @@ class Emailer
|
||||||
}
|
}
|
||||||
|
|
||||||
$email_textonly = false;
|
$email_textonly = false;
|
||||||
if (!empty($params['uid'])) {
|
if (!empty($uid)) {
|
||||||
$email_textonly = DI::pConfig()->get($params['uid'], "system", "email_textonly");
|
$email_textonly = DI::pConfig()->get($uid, "system", "email_textonly");
|
||||||
}
|
}
|
||||||
|
|
||||||
$fromName = Email::encodeHeader(html_entity_decode($params['fromName'], ENT_QUOTES, 'UTF-8'), 'UTF-8');
|
$fromName = Email::encodeHeader(html_entity_decode($fromName, ENT_QUOTES, 'UTF-8'), 'UTF-8');
|
||||||
$messageSubject = Email::encodeHeader(html_entity_decode($params['messageSubject'], ENT_QUOTES, 'UTF-8'), 'UTF-8');
|
$messageSubject = Email::encodeHeader(html_entity_decode($subject, ENT_QUOTES, 'UTF-8'), 'UTF-8');
|
||||||
|
|
||||||
// generate a mime boundary
|
// generate a mime boundary
|
||||||
$mimeBoundary =rand(0, 9)."-"
|
$mimeBoundary =rand(0, 9)."-"
|
||||||
|
@ -56,21 +58,21 @@ class Emailer
|
||||||
.rand(10000, 99999);
|
.rand(10000, 99999);
|
||||||
|
|
||||||
// generate a multipart/alternative message header
|
// generate a multipart/alternative message header
|
||||||
$messageHeader = ($params['additionalMailHeader'] ?? '') .
|
$messageHeader = $additionalMailHeader .
|
||||||
"From: $fromName <{$params['fromEmail']}>\n" .
|
"From: $fromName <{$fromEmail}>\n" .
|
||||||
"Reply-To: $fromName <{$params['replyTo']}>\n" .
|
"Reply-To: $fromName <{$replyTo}>\n" .
|
||||||
"MIME-Version: 1.0\n" .
|
"MIME-Version: 1.0\n" .
|
||||||
"Content-Type: multipart/alternative; boundary=\"{$mimeBoundary}\"";
|
"Content-Type: multipart/alternative; boundary=\"{$mimeBoundary}\"";
|
||||||
|
|
||||||
// assemble the final multipart message body with the text and html types included
|
// assemble the final multipart message body with the text and html types included
|
||||||
$textBody = chunk_split(base64_encode($params['textVersion']));
|
$textBody = chunk_split(base64_encode($msgText));
|
||||||
$htmlBody = chunk_split(base64_encode($params['htmlVersion']));
|
$htmlBody = chunk_split(base64_encode($msgHtml));
|
||||||
$multipartMessageBody = "--" . $mimeBoundary . "\n" . // plain text section
|
$multipartMessageBody = "--" . $mimeBoundary . "\n" . // plain text section
|
||||||
"Content-Type: text/plain; charset=UTF-8\n" .
|
"Content-Type: text/plain; charset=UTF-8\n" .
|
||||||
"Content-Transfer-Encoding: base64\n\n" .
|
"Content-Transfer-Encoding: base64\n\n" .
|
||||||
$textBody . "\n";
|
$textBody . "\n";
|
||||||
|
|
||||||
if (!$email_textonly && !is_null($params['htmlVersion'])) {
|
if (!$email_textonly && !is_null($msgHtml)) {
|
||||||
$multipartMessageBody .=
|
$multipartMessageBody .=
|
||||||
"--" . $mimeBoundary . "\n" . // text/html section
|
"--" . $mimeBoundary . "\n" . // text/html section
|
||||||
"Content-Type: text/html; charset=UTF-8\n" .
|
"Content-Type: text/html; charset=UTF-8\n" .
|
||||||
|
@ -81,14 +83,14 @@ class Emailer
|
||||||
"--" . $mimeBoundary . "--\n"; // message ending
|
"--" . $mimeBoundary . "--\n"; // message ending
|
||||||
|
|
||||||
if (DI::config()->get("system", "sendmail_params", true)) {
|
if (DI::config()->get("system", "sendmail_params", true)) {
|
||||||
$sendmail_params = '-f ' . $params['fromEmail'];
|
$sendmail_params = '-f ' . $fromEmail;
|
||||||
} else {
|
} else {
|
||||||
$sendmail_params = null;
|
$sendmail_params = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// send the message
|
// send the message
|
||||||
$hookdata = [
|
$hookdata = [
|
||||||
'to' => $params['toEmail'],
|
'to' => $toEmail,
|
||||||
'subject' => $messageSubject,
|
'subject' => $messageSubject,
|
||||||
'body' => $multipartMessageBody,
|
'body' => $multipartMessageBody,
|
||||||
'headers' => $messageHeader,
|
'headers' => $messageHeader,
|
||||||
|
@ -109,7 +111,7 @@ class Emailer
|
||||||
$hookdata['headers'],
|
$hookdata['headers'],
|
||||||
$hookdata['parameters']
|
$hookdata['parameters']
|
||||||
);
|
);
|
||||||
Logger::log("header " . 'To: ' . $params['toEmail'] . "\n" . $messageHeader, Logger::DEBUG);
|
Logger::log("header " . 'To: ' . $toEmail . "\n" . $messageHeader, Logger::DEBUG);
|
||||||
Logger::log("return value " . (($res)?"true":"false"), Logger::DEBUG);
|
Logger::log("return value " . (($res)?"true":"false"), Logger::DEBUG);
|
||||||
return $res;
|
return $res;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue