2021-05-21 08:49:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Xentral\Modules\SystemMailer;
|
|
|
|
|
|
|
|
use Exception;
|
|
|
|
use Xentral\Components\Logger\LoggerAwareTrait;
|
|
|
|
use Xentral\Components\Mailer\Data\EmailMessage;
|
|
|
|
use Xentral\Components\Mailer\Data\FileAttachment;
|
|
|
|
use Xentral\Components\Mailer\Exception\MailerTransportException;
|
|
|
|
use Xentral\Components\Mailer\Mailer;
|
|
|
|
use Xentral\Modules\GoogleApi\Exception\AuthorizationExpiredException;
|
|
|
|
use Xentral\Modules\SystemMailer\Data\EmailBackupAccount;
|
|
|
|
use Xentral\Modules\SystemMailer\Service\EmailAccountGateway;
|
|
|
|
use Xentral\Modules\SystemMailer\Service\MailBodyCleaner;
|
|
|
|
use Xentral\Modules\SystemMailer\Service\MailerTransportFactory;
|
|
|
|
use Xentral\Modules\SystemMailer\Service\MailLogService;
|
|
|
|
|
|
|
|
final class SystemMailer
|
|
|
|
{
|
|
|
|
use LoggerAwareTrait;
|
|
|
|
|
|
|
|
/** @var MailerTransportFactory $factory */
|
|
|
|
private $factory;
|
|
|
|
|
|
|
|
/** @var MailLogService $emailLog */
|
|
|
|
private $emailLog;
|
|
|
|
|
|
|
|
/** @var MailBodyCleaner $cleaner */
|
|
|
|
private $cleaner;
|
|
|
|
|
|
|
|
/** @var EmailAccountGateway $accountGateway */
|
|
|
|
private $accountGateway;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param MailerTransportFactory $factory
|
|
|
|
* @param EmailAccountGateway $accountGateway
|
|
|
|
* @param MailLogService $emailLog
|
|
|
|
* @param MailBodyCleaner $cleaner
|
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
MailerTransportFactory $factory,
|
|
|
|
EmailAccountGateway $accountGateway,
|
|
|
|
MailLogService $emailLog,
|
|
|
|
MailBodyCleaner $cleaner
|
|
|
|
) {
|
|
|
|
$this->factory = $factory;
|
|
|
|
$this->emailLog = $emailLog;
|
|
|
|
$this->cleaner = $cleaner;
|
|
|
|
$this->accountGateway = $accountGateway;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param EmailMessage $email
|
|
|
|
* @param EmailBackupAccount $account
|
|
|
|
*
|
|
|
|
* @return bool success
|
|
|
|
*/
|
2022-06-25 16:49:03 +02:00
|
|
|
public function send(EmailMessage $email, EmailBackupAccount $account, &$mailerror_text): bool
|
2021-05-21 08:49:41 +02:00
|
|
|
{
|
|
|
|
$transport = $this->factory->createMailerTransport($account);
|
|
|
|
$email = $this->cleaner->cleanEmailBody($email);
|
|
|
|
$mailer = new Mailer($transport);
|
|
|
|
try {
|
|
|
|
$success = $mailer->send($email);
|
|
|
|
$this->emailLog->logOutgoingMail($email, $account, $transport->getStatus());
|
2022-06-25 16:49:03 +02:00
|
|
|
if ($transport->hasErrors()) {
|
|
|
|
|
|
|
|
$errors = ['error' => $transport->getErrorMessages()];
|
|
|
|
$this->logger->error('Error while sending email.', $errors);
|
|
|
|
$mailerror_text = 'Error while sending email. '.implode(', ',$errors['error']);
|
2021-05-21 08:49:41 +02:00
|
|
|
}
|
|
|
|
} catch (MailerTransportException $e) {
|
|
|
|
$this->logger->error($e->getMessage(), ['dump' => $transport->getErrorMessages()]);
|
|
|
|
|
2022-06-25 16:49:03 +02:00
|
|
|
$errors = ['error' => $transport->getErrorMessages()];
|
|
|
|
$this->logger->error('Error while sending email.', $errors);
|
|
|
|
$mailerror_text = 'Error while sending email. '.implode(', ',$errors['error']);
|
|
|
|
|
2021-05-21 08:49:41 +02:00
|
|
|
return false;
|
|
|
|
} catch (AuthorizationExpiredException $e) {
|
|
|
|
$this->logger->error(
|
2022-06-25 16:49:03 +02:00
|
|
|
'Error while sending email. Google authorization expired',
|
2021-05-21 08:49:41 +02:00
|
|
|
['exception' => $e]
|
|
|
|
);
|
2022-06-25 16:49:03 +02:00
|
|
|
$mailerror_text = 'Error while sending email. Google authorization expired';
|
2021-05-21 08:49:41 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated only for backwards compatibility with erpApi::MailSendFinal
|
|
|
|
*
|
|
|
|
* @param string $senderEmail
|
|
|
|
* @param string $senderName
|
|
|
|
* @param array $recipients
|
|
|
|
* @param string $subject
|
|
|
|
* @param string $body
|
|
|
|
* @param array $attachFiles
|
|
|
|
* @param array $ccs
|
|
|
|
* @param array $bccs
|
|
|
|
*
|
|
|
|
* @return bool success
|
|
|
|
*/
|
|
|
|
public function composeAndSendEmail(
|
|
|
|
$senderEmail,
|
|
|
|
$senderName,
|
|
|
|
$recipients,
|
|
|
|
$subject,
|
|
|
|
$body,
|
|
|
|
$attachFiles = [],
|
|
|
|
$ccs = [],
|
2022-06-25 16:49:03 +02:00
|
|
|
$bccs = [],
|
|
|
|
&$mailerror_text
|
2021-05-21 08:49:41 +02:00
|
|
|
): bool {
|
|
|
|
//cannot use Mailer component if no emailbackup account exists
|
|
|
|
$account = null;
|
2022-06-25 16:49:03 +02:00
|
|
|
|
2021-05-21 08:49:41 +02:00
|
|
|
try {
|
|
|
|
$account = $this->accountGateway->getAccountByEmail($senderEmail);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
$account = null;
|
|
|
|
$this->logger->error($e->getMessage(), ['exception' => $e]);
|
2022-06-25 16:49:03 +02:00
|
|
|
$mailerror_text = 'Error while sending email: Account not found.';
|
2021-05-21 08:49:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($account === null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//use Mailer component only for 'smtp' or 'gmail' authtype
|
|
|
|
if (
|
|
|
|
$account->isSmtpEnabled() === false
|
|
|
|
|| (
|
|
|
|
$account->getSmtpAuthType() !== EmailBackupAccount::AUTH_SMTP
|
|
|
|
&& $account->getSmtpAuthType() !== EmailBackupAccount::AUTH_GMAIL
|
|
|
|
)
|
|
|
|
) {
|
2022-06-26 18:15:30 +02:00
|
|
|
$mailerror_text = 'Authtype error.';
|
2021-05-21 08:49:41 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$email = new EmailMessage($subject, $body, $recipients, $ccs, $bccs);
|
|
|
|
foreach ($attachFiles as $file) {
|
|
|
|
if ($file !== null && file_exists($file)) {
|
|
|
|
$email->addAttachment(new FileAttachment($file));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$account = $account
|
|
|
|
->withSmtpSenderName($senderName)
|
|
|
|
->withDisplayName($senderName);
|
|
|
|
|
|
|
|
//send email with new Mailer component
|
2022-06-25 16:49:03 +02:00
|
|
|
|
|
|
|
$mailerror_text = "";
|
|
|
|
|
|
|
|
$result = $this->send($email, $account, $mailerror_text);
|
|
|
|
|
|
|
|
return ($result);
|
2021-05-21 08:49:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @deprecated only for backwards compatibility with erpApi::MailSendFinal
|
|
|
|
*
|
|
|
|
* @param array $recipients
|
|
|
|
* @param string $subject
|
|
|
|
* @param string $body
|
|
|
|
* @param array $attachFiles
|
|
|
|
* @param array $ccs
|
|
|
|
* @param array $bccs
|
|
|
|
*
|
|
|
|
* @return EmailMessage
|
|
|
|
*/
|
|
|
|
public function composeEmail(
|
|
|
|
$recipients,
|
|
|
|
$subject,
|
|
|
|
$body,
|
|
|
|
$attachFiles = [],
|
|
|
|
$ccs = [],
|
|
|
|
$bccs = []
|
|
|
|
): EmailMessage {
|
|
|
|
$email = new EmailMessage($subject, $body, $recipients, $ccs, $bccs);
|
|
|
|
foreach ($attachFiles as $file) {
|
|
|
|
if ($file !== null && file_exists($file)) {
|
|
|
|
$email->addAttachment(new FileAttachment($file));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $email;
|
|
|
|
}
|
|
|
|
}
|