Remove unused parameter
[MAILPOET-2648]
This commit is contained in:
committed by
Jack Kitterhing
parent
b287a6e609
commit
6641842dd1
@ -58,7 +58,7 @@ class MailPoetMapper {
|
|||||||
case API::RESPONSE_CODE_CAN_NOT_SEND:
|
case API::RESPONSE_CODE_CAN_NOT_SEND:
|
||||||
if ($result['message'] === MailerError::MESSAGE_EMAIL_NOT_AUTHORIZED) {
|
if ($result['message'] === MailerError::MESSAGE_EMAIL_NOT_AUTHORIZED) {
|
||||||
$operation = MailerError::OPERATION_AUTHORIZATION;
|
$operation = MailerError::OPERATION_AUTHORIZATION;
|
||||||
$message = $this->getUnauthorizedEmailMessage($sender, $newsletter[0]);
|
$message = $this->getUnauthorizedEmailMessage($sender);
|
||||||
} else {
|
} else {
|
||||||
$message = $this->getAccountBannedMessage();
|
$message = $this->getAccountBannedMessage();
|
||||||
}
|
}
|
||||||
@ -89,7 +89,7 @@ class MailPoetMapper {
|
|||||||
return $errors;
|
return $errors;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function getUnauthorizedEmailMessage($sender, $newsletter) {
|
private function getUnauthorizedEmailMessage($sender) {
|
||||||
$email = $sender ? $sender['from_email'] : null;
|
$email = $sender ? $sender['from_email'] : null;
|
||||||
$message = '<p>';
|
$message = '<p>';
|
||||||
$message .= sprintf(WPFunctions::get()->__('The MailPoet Sending Service did not send your latest email because the address %s is not yet authorized.', 'mailpoet'), '<i>' . ( $email ?: WPFunctions::get()->__('Unknown address') ) . '</i>' );
|
$message .= sprintf(WPFunctions::get()->__('The MailPoet Sending Service did not send your latest email because the address %s is not yet authorized.', 'mailpoet'), '<i>' . ( $email ?: WPFunctions::get()->__('Unknown address') ) . '</i>' );
|
||||||
|
Reference in New Issue
Block a user