JezK
Edit File: MailerHelper.php
<?php namespace AcyMailing\Helpers; use AcyMailing\Classes\CampaignClass; use AcyMailing\Classes\ConfigurationClass; use AcyMailing\Classes\FollowupClass; use AcyMailing\Classes\MailArchiveClass; use AcyMailing\Classes\MailClass; use AcyMailing\Classes\OverrideClass; use AcyMailing\Classes\UrlClass; use AcyMailing\Classes\UserClass; use AcyMailerPhp\Exception; use AcyMailerPhp\OAuth; use AcyMailerPhp\Mailer; use AcyMailing\Libraries\Pelago\Emogrifier\CssInliner; use AcyMailing\Libraries\Pelago\Emogrifier\HtmlProcessor\HtmlPruner; class MailerHelper extends Mailer { const NEW_TRY_ERRORS = [1, 6]; const REGEX_URL = '#<[^>]* href[ ]*=[ ]*"(?!mailto:|\#|ymsgr:|callto:|file:|ftp:|webcal:|skype:|tel:)([^"]+)"#Ui'; const AUTOLOGIN_PARAMS = 'autoSubId=%7Bsubscriber:id%7D&subKey=%7Bsubscriber:autologin_token%7Curlencode%7D'; // Redefine PHPMailer protected attributes for dynamic texts system public $to = []; public $cc = []; public $bcc = []; public $ReplyTo = []; public $attachment = []; public $CustomHeader = []; public string $preheader; public string $replyname; public string $replyemail; public string $body; public string $altbody; public string $subject; public string $from; public string $fromName; public array $replyto; public bool $custom_view; private EncodingHelper $encodingHelper; private EditorHelper $editorHelper; private UserClass $userClass; private MailClass $mailClass; private MailArchiveClass $mailArchiveClass; public ConfigurationClass $config; public bool $report = true; public bool $alreadyCheckedAddresses = false; public int $errorNumber = 0; // Can be used when our sending method is temporary unavailable to not count it as a "real" failed public bool $failedCounting = true; // Used by external code public bool $autoAddUser = false; public bool $userCreationTriggers = true; public string $reportMessage = ''; public bool $dtextsFailed = false; // Should we track the sending of a message (used for welcoming message) public bool $trackEmail = false; // Sending method used in the configuration public string $externalMailer; // To import custom stylesheet from user public string $stylesheet = ''; public array $settings; // Used to store special dynamic text content public array $parameters = []; private string $userLanguage = ''; private string $receiverEmail; // Special send statuses private object $overrideEmailToSend; public bool $isTest = false; public bool $isSpamTest = false; public bool $isForward = false; public int $mailId = 0; public int $creator_id; public string $type; public string $links_language; public int $id = 0; public ?object $mail = null; // Mail objects with replaceContent ran private array $defaultMail = []; // Sending method list plugin public array $listsIds = []; private string $currentSendingMethod = ''; private array $currentMethodSetting = []; public bool $isAbTest = false; public bool $isTransactional = false; public bool $isOneTimeMail = false; public bool $isSendingMethodByListActive = false; public string $portError; public function __construct() { parent::__construct(); // The DKIM fails when the X-Mailer is added and the user uses their own keys, it makes no sense D: $this->XMailer = ' '; $this->SMTPAutoTLS = false; $this->encodingHelper = new EncodingHelper(); $this->editorHelper = new EditorHelper(); $this->userClass = new UserClass(); $this->mailClass = new MailClass(); $this->mailArchiveClass = new MailArchiveClass(); $this->config = acym_config(); $this->setFrom($this->getSendSettings('from_email'), $this->getSendSettings('from_name')); $this->Sender = $this->cleanText($this->getSendSettings('bounce_email')); if (empty($this->Sender)) { $this->Sender = ''; } $maxLineLength = $this->config->get('mailer_wordwrap', 0); if (!empty($maxLineLength) && self::MAX_LINE_LENGTH > $maxLineLength) { $this->WordWrap = $maxLineLength; } $this->setSendingMethodSetting(); //Do we have a DKIM validation? if ($this->config->get('dkim', 0) && $this->Mailer != 'elasticemail') { $this->DKIM_domain = $this->config->get('dkim_domain'); $this->DKIM_selector = $this->config->get('dkim_selector', 'acy'); //Just in case of... if (empty($this->DKIM_selector)) $this->DKIM_selector = 'acy'; $this->DKIM_passphrase = $this->config->get('dkim_passphrase'); $this->DKIM_identity = $this->config->get('dkim_identity'); $this->DKIM_private = trim($this->config->get('dkim_private')); $this->DKIM_private_string = trim($this->config->get('dkim_private')); } //Set the Charset, by default 'utf-8' $this->CharSet = strtolower($this->config->get('charset')); if (empty($this->CharSet)) { $this->CharSet = 'utf-8'; } $this->clearAll(); //Set the encoding format, should be 8 bit by default. $this->Encoding = $this->config->get('encoding_format'); if (empty($this->Encoding)) { $this->Encoding = '8bit'; } // phpcs:ignore Squiz.PHP.DiscouragedFunctions.Discouraged -- This is for big regex, the default value is 100 000. @ini_set('pcre.backtrack_limit', 1000000); $this->SMTPOptions = ['ssl' => ['verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true]]; } public function setSendingMethodSetting(): void { $externalSendingMethod = []; acym_trigger('onAcymGetSendingMethods', [&$externalSendingMethod, true]); $externalSendingMethod = !empty($externalSendingMethod['sendingMethods']) ? array_keys($externalSendingMethod['sendingMethods']) : []; $mailerMethodConfig = $this->getSendingMethod(); $this->currentSendingMethod = $mailerMethodConfig; // Default mailer is to use PHP's mail function if ($mailerMethodConfig === 'google') { $this->isSMTP(); $this->Host = 'smtp.gmail.com:465'; $this->SMTPAuth = true; $this->Username = trim($this->getSendingMethodSettings('google_username')); $this->AuthType = 'XOAUTH2'; $this->SMTPSecure = 'ssl'; $this->setOAuth( new OAuth( [ 'sendingMethod' => 'google', // https://developers.google.com/identity/protocols/oauth2/web-server#httprest_8 'tokenGenerationUrl' => 'https://oauth2.googleapis.com/token', 'userName' => $this->Username, 'clientId' => trim($this->getSendingMethodSettings('google_client_id')), 'clientSecret' => trim($this->getSendingMethodSettings('google_client_secret')), 'oauthToken' => trim($this->getSendingMethodSettings('google_access_token')), 'oauthTokenExpiration' => trim($this->getSendingMethodSettings('google_access_token_expiration')), 'refreshToken' => trim($this->getSendingMethodSettings('google_refresh_token')), ] ) ); if (empty($this->Sender)) { $this->Sender = strpos($this->Username, '@') ? $this->Username : $this->getSendingMethodSettings('from_email'); } } elseif ($mailerMethodConfig === 'outlook') { $this->isSMTP(); $tenant = trim($this->getSendingMethodSettings('outlook_tenant', 'consumers')); $host = $tenant === 'consumers' ? 'smtp-mail.outlook.com' : 'smtp.office365.com'; $this->Host = $host.':587'; $this->SMTPAuth = true; $this->Username = trim($this->getSendingMethodSettings('outlook_username')); $this->AuthType = 'XOAUTH2'; $this->SMTPSecure = 'tls'; $this->setOAuth( new OAuth( [ 'sendingMethod' => 'outlook', // https://learn.microsoft.com/en-us/entra/identity-platform/v2-oauth2-auth-code-flow#refresh-the-access-token 'tokenGenerationUrl' => 'https://login.microsoftonline.com/'.$tenant.'/oauth2/v2.0/token', 'userName' => $this->Username, 'clientId' => trim($this->getSendingMethodSettings('outlook_client_id')), 'clientSecret' => trim($this->getSendingMethodSettings('outlook_client_secret')), 'oauthToken' => trim($this->getSendingMethodSettings('outlook_access_token')), 'oauthTokenExpiration' => trim($this->getSendingMethodSettings('outlook_access_token_expiration')), 'refreshToken' => trim($this->getSendingMethodSettings('outlook_refresh_token')), ] ) ); if (empty($this->Sender)) { $this->Sender = strpos($this->Username, '@') ? $this->Username : $this->getSendingMethodSettings('from_email'); } } elseif ($mailerMethodConfig === 'smtp') { $this->isSMTP(); $this->Host = trim($this->getSendingMethodSettings('smtp_host')); $port = $this->getSendingMethodSettings('smtp_port'); // 465 is default port for SSL if (empty($port) && $this->getSendingMethodSettings('smtp_secured') === 'ssl') { $port = 465; } if (!empty($port)) { $this->Host .= ':'.$port; } $this->SMTPAuth = (bool)$this->getSendingMethodSettings('smtp_auth', '1'); $this->Username = trim($this->getSendingMethodSettings('smtp_username')); $authMethod = $this->getSendingMethodSettings('smtp_method'); if (in_array($authMethod, ['CRAM-MD5', 'LOGIN', 'PLAIN'])) { $this->AuthType = $authMethod; } if ($this->SMTPAuth) { $this->Password = trim($this->getSendingMethodSettings('smtp_password')); } $this->SMTPSecure = trim($this->getSendingMethodSettings('smtp_secured')); if (empty($this->Sender)) { $this->Sender = strpos($this->Username, '@') ? $this->Username : $this->getSendingMethodSettings('from_email'); } } elseif ($mailerMethodConfig === 'sendmail') { $this->isSendmail(); $this->Sendmail = trim($this->getSendingMethodSettings('sendmail_path')); if (empty($this->Sendmail)) { $this->Sendmail = '/usr/sbin/sendmail'; } } elseif ($mailerMethodConfig === 'qmail') { $this->isQmail(); } elseif ($mailerMethodConfig === 'amazon') { $this->isSMTP(); $amazonCredentials = []; acym_trigger('onAcymGetCredentialsSendingMethod', [&$amazonCredentials, 'amazon', $this->currentMethodSetting], 'plgAcymAmazon'); $this->Host = trim($amazonCredentials['amazon_host']).':587'; $this->Username = trim($amazonCredentials['amazon_username']); $this->Password = trim($amazonCredentials['amazon_password']); $this->SMTPAuth = true; $this->SMTPSecure = 'tls'; } elseif ($mailerMethodConfig === 'brevo-smtp') { $this->isSMTP(); $brevoSmtpCredentials = []; acym_trigger('onAcymGetCredentialsSendingMethod', [&$brevoSmtpCredentials, 'brevo-smtp', $this->currentMethodSetting], 'plgAcymBrevo'); $this->Host = trim($brevoSmtpCredentials['brevo-smtp_host']).':587'; $this->Username = trim($brevoSmtpCredentials['brevo-smtp_username']); $this->Password = trim($brevoSmtpCredentials['brevo-smtp_password']); $this->SMTPAuth = true; $this->SMTPSecure = 'tls'; } elseif (in_array($mailerMethodConfig, $externalSendingMethod)) { $this->isExternal($mailerMethodConfig); } else { $this->isMail(); } } /** * Dynamically called from PHPMailer */ protected function externalSend(string $MIMEHeader, string $MIMEBody): bool { $fromName = empty($this->FromName) ? $this->config->get('from_name') : $this->FromName; $reply_to = array_shift($this->ReplyTo); $attachments = []; if (!empty($this->attachment) && $this->config->get('embed_files')) { foreach ($this->attachment as $i => $oneAttach) { $encodedContent = $this->encodeFile($oneAttach[0], $oneAttach[3]); $this->attachment[$i]['contentEncoded'] = $encodedContent; } $attachments = $this->attachment; } $response = []; $data = [ &$response, $this, ['email' => $this->to[0][0], 'name' => $this->to[0][1]], ['email' => $this->From, 'name' => $fromName], ['email' => $reply_to[0], 'name' => $reply_to[1]], !empty($this->bcc) ? $this->bcc : [], $attachments, $this->currentMethodSetting, ]; acym_trigger('onAcymSendEmail', $data); if (!empty($response['error'])) { $this->setError($response['message']); return false; } return true; } public function send(): bool { if (!file_exists(ACYM_LIBRARIES.'Mailer'.DS.'Mailer.php')) { $this->reportMessage = acym_translationSprintf('ACYM_X_FILE_MISSING', 'Mailer', ACYM_LIBRARIES.'Mailer'.DS); if ($this->report) { acym_enqueueMessage($this->reportMessage, 'error'); } return false; } if (empty($this->Subject) || empty($this->Body)) { if ($this->isTest && empty($this->Subject)) { $this->Subject = acym_translation('ACYM_EMAIL_SUBJECT'); } else { $this->reportMessage = acym_translation('ACYM_SEND_EMPTY'); $this->errorNumber = 8; if ($this->report) { acym_enqueueMessage($this->reportMessage, 'error'); } return false; } } //Check if there is at least one reply to otherwise add the default one. if (empty($this->ReplyTo) && empty($this->ReplyToQueue)) { if (!empty($this->replyemail)) { $replyToEmail = $this->replyemail; } elseif ($this->config->get('from_as_replyto', 1) == 1) { $replyToEmail = $this->getSendSettings('from_email'); } else { $replyToEmail = $this->getSendSettings('replyto_email'); } if (!empty($this->replyname)) { $replyToName = $this->replyname; } elseif ($this->config->get('from_as_replyto', 1) == 1) { $replyToName = $this->getSendSettings('from_name'); } else { $replyToName = $this->getSendSettings('replyto_name'); } $this->acymAddReplyTo($replyToEmail, $replyToName); } // Embed images if there are images to embed $shouldEmbed = $this->config->get('embed_images', 0); if (intval($shouldEmbed) === 1 && $this->Mailer !== 'elasticemail') { $this->embedImages(); } if (!$this->alreadyCheckedAddresses) { $this->alreadyCheckedAddresses = true; $replyToTmp = ''; if (!empty($this->ReplyTo)) { $replyToTmp = reset($this->ReplyTo); $replyToTmp = $replyToTmp[0]; } elseif (!empty($this->ReplyToQueue)) { $replyToTmp = reset($this->ReplyToQueue); $replyToTmp = $replyToTmp[1]; } if (empty($replyToTmp) || !acym_isValidEmail($replyToTmp)) { $this->reportMessage = acym_translation('ACYM_VALID_EMAIL').' ( '.acym_translation('ACYM_REPLYTO_EMAIL').' : '.(empty($this->ReplyTo) ? '' : $replyToTmp).' ) '; $this->errorNumber = 9; if ($this->report) { acym_enqueueMessage($this->reportMessage, 'error'); } return false; } //Check the from address if (empty($this->From) || !acym_isValidEmail($this->From)) { $this->reportMessage = acym_translation('ACYM_VALID_EMAIL').' ( '.acym_translation('ACYM_FROM_EMAIL').' : '.$this->From.' ) '; $this->errorNumber = 9; if ($this->report) { acym_enqueueMessage($this->reportMessage, 'error'); } return false; } if (!empty($this->Sender) && !acym_isValidEmail($this->Sender)) { $this->reportMessage = acym_translation('ACYM_VALID_EMAIL').' ( '.acym_translation('ACYM_BOUNCE_EMAIL').' : '.$this->Sender.' ) '; $this->errorNumber = 9; if ($this->report) { acym_enqueueMessage($this->reportMessage, 'error'); } return false; } } if ($this->config->get('save_body') === '1') { @file_put_contents(ACYM_ROOT.'acydebug_mail.html', $this->Body); } //We will change the encoding format in case of its needed... //We always come from utf-8 to transform to something else! $this->Body = htmlentities($this->Body); $this->Body = htmlspecialchars_decode($this->Body); //Fix The Bat issues for special encoding as ς was interpreted as σf;... $this->Body = str_replace(['&', 'ς'], ['&', 'ς'], $this->Body); if ($this->CharSet !== 'utf-8') { $this->Body = $this->encodingHelper->change($this->Body, 'UTF-8', $this->CharSet); $this->Subject = $this->encodingHelper->change($this->Subject, 'UTF-8', $this->CharSet); } // These characters can break the send process, let's remove them from the subject $this->Subject = str_replace( ['’', '“', '”', '–'], ["'", '"', '"', '-'], $this->Subject ); // BE CAREFUL! This space is not a space, it's a ALT0160 chr(194) by char(32) which means almost $this->Body = str_replace(" ", ' ', $this->Body); $externalSending = false; $this->isOneTimeMail = $this->isTransactional = $this->isForward || $this->isTest || $this->isSpamTest; if (!empty($this->mailId) && !empty($this->defaultMail[$this->mailId])) { if ($this->mailClass->isTransactionalMail($this->defaultMail[$this->mailId])) { $this->isTransactional = true; } if ($this->mailClass->isOneTimeMail($this->defaultMail[$this->mailId])) { $this->isOneTimeMail = true; } } acym_trigger('onAcymProcessQueueExternalSendingCampaign', [&$externalSending, $this->isTransactional]); $warnings = ''; if (ACYM_PRODUCTION) { if ($externalSending) { $result = false; acym_trigger('onAcymRegisterReceiverContentAndList', [&$result, $this->Subject, $this->Body, $this->receiverEmail, $this->mailId, &$warnings]); } else { acym_trigger('onAcymBeforeEmailSend', [&$this]); ob_start(); $result = parent::send(); $warnings = ob_get_clean(); } } //display error if bloque is displayed... for free.fr especially if (!empty($warnings) && strpos($warnings, 'bloque')) { $result = false; } $this->mailHeader = ''; $receivers = []; foreach ($this->to as $oneReceiver) { $receivers[] = $oneReceiver[0]; } if (!$result) { $this->reportMessage = acym_translationSprintf('ACYM_SEND_ERROR', '<b>'.$this->Subject.'</b>', '<b>'.implode(' , ', $receivers).'</b>'); if (!empty($this->ErrorInfo)) { $this->reportMessage .= " \n\n ".$this->ErrorInfo; } if (!empty($warnings)) { $this->reportMessage .= " \n\n ".$warnings; } $this->errorNumber = 1; if ($this->report) { //We display the report here... we add a link to our doc for the "could not instantiate mail function". $this->reportMessage = str_replace( 'Could not instantiate mail function', '<a target="_blank" href="'.ACYM_DOCUMENTATION.'faq/could-not-instantiate-mail-function">'.acym_translation('ACYM_COUND_NOT_INSTANCIATE_MAIL_FUCNTION').'</a>', $this->reportMessage ); acym_enqueueMessage(nl2br($this->reportMessage), 'error'); } } else { if ($this->isSendingMethodByListActive) { $this->reportMessage = acym_translationSprintf( 'ACYM_SEND_SUCCESS_WITH_SENDING_METHOD', '<b>'.$this->Subject.'</b>', '<b>'.implode(' , ', $receivers).'</b>', '<b>'.$this->currentSendingMethod.'</b>' ); } else { $this->reportMessage = acym_translationSprintf('ACYM_SEND_SUCCESS', '<b>'.$this->Subject.'</b>', '<b>'.implode(' , ', $receivers).'</b>'); } if (!empty($warnings)) { $this->reportMessage .= " \n\n ".$warnings; } if ($this->report && acym_isAdmin()) { acym_enqueueMessage(preg_replace('#(<br( ?/)?>){2}#', '<br />', nl2br($this->reportMessage)), 'info'); } } return $result; } public function clearAll(): void { $this->Subject = ''; $this->Body = ''; $this->AltBody = ''; $this->ClearAllRecipients(); $this->ClearAttachments(); $this->ClearCustomHeaders(); $this->ClearReplyTos(); $this->errorNumber = 0; $this->MessageID = ''; $this->ErrorInfo = ''; $this->setFrom($this->getSendSettings('from_email'), $this->getSendSettings('from_name')); } public function load(int $mailId, ?object $user = null): ?object { // If it's already loaded return the email if (isset($this->defaultMail[$mailId])) { return $this->defaultMail[$mailId]; } if (!empty($this->overrideEmailToSend)) { $this->defaultMail[$mailId] = $this->overrideEmailToSend; } else { $this->defaultMail[$mailId] = $this->mailClass->getOneById($mailId, true); } global $acymLanguages; if (!$this->isAbTest && empty($this->overrideEmailToSend) && acym_isMultilingual()) { $defaultLanguage = $this->config->get('multilingual_default', ACYM_DEFAULT_LANGUAGE); $mails = $this->mailClass->getMultilingualMails($mailId); $this->userLanguage = !empty($user->language) ? $user->language : $defaultLanguage; if (!empty($mails)) { $languages = array_keys($mails); if (count($languages) == 1) { $key = $languages[0]; } elseif (empty($mails[$this->userLanguage])) { $key = $defaultLanguage; } else { $key = $this->userLanguage; } if (isset($mails[$key])) { $this->defaultMail[$mailId] = $mails[$key]; } } else { unset($this->defaultMail[$mailId]); return null; } $acymLanguages['userLanguage'] = $this->userLanguage; $this->setFrom($this->getSendSettings('from_email'), $this->getSendSettings('from_name')); } //We could not load the email... if (empty($this->defaultMail[$mailId]->id)) { unset($this->defaultMail[$mailId]); return null; } if (!empty($this->defaultMail[$mailId]->attachments)) { $this->defaultMail[$mailId]->attach = []; $attachments = json_decode($this->defaultMail[$mailId]->attachments, true); foreach ($attachments as $oneAttach) { $attach = new \stdClass(); $attach->name = basename($oneAttach['filename']); $attach->filename = str_replace(['/', '\\'], DS, ACYM_ROOT).$oneAttach['filename']; $attach->url = ACYM_LIVE.$oneAttach['filename']; $this->defaultMail[$mailId]->attach[] = $attach; } } $this->mailId = $mailId; $this->id = $this->mailId; $this->mail = clone $this->defaultMail[$mailId]; acym_trigger('replaceContent', [&$this->defaultMail[$mailId], true]); $this->prepareEmailContent($mailId); if (!$this->isTest) { $this->storeArchiveVersion($mailId); } return $this->defaultMail[$mailId]; } /** * @param int|string $mailId The mail Id * @param int|string|object $user Can be the user Id, an email address or the user object * @param array $options Additional options for bcc, attachments, etc... * * @return bool * @throws Exception */ public function sendOne($mailId, $user, array $options = []): bool { $this->clearAll(); $receiver = $this->loadUser($user); $this->isTest = !empty($options['isTest']); $this->dtextsFailed = false; if (empty($receiver->email)) { $this->errorNumber = 4; $this->reportMessage = acym_translationSprintf('ACYM_SEND_ERROR_USER', '<b><i>'.esc_html(is_object($user) ? $user->email : $user).'</i></b>'); if ($this->report) { acym_enqueueMessage($this->reportMessage, 'error'); } return false; } // Can be a string for Joomla 3 and WordPress $mailId = intval($mailId); $receiver->id = intval($receiver->id); // Load the mail with global tags replaced if (!$this->load($mailId, $receiver)) { $this->reportMessage = 'Can not load the email with ID n°'.$mailId; $this->errorNumber = 2; if ($this->report) { acym_enqueueMessage($this->reportMessage, 'error'); } return false; } $this->prepareContent($mailId, $options); $this->prepareHeaders($mailId, $receiver->id, $options); $this->prepareAddresses($mailId, $receiver); $this->prepareBcc($mailId, $options); $this->prepareAttachments($mailId, $options); $this->replaceDynamicContent($mailId); $this->prepareTracking($mailId, $receiver); if (!$this->handleDtexts($receiver)) { $this->dtextsFailed = true; return false; } $status = $this->send(); $this->initStatistics($status, $receiver->id); return $status; } public function triggerFollowUpAgain(string $mailId, string $userId): void { if ($this->defaultMail[$mailId]->type !== MailClass::TYPE_FOLLOWUP) { return; } $followUpClass = new FollowupClass(); $followUp = $followUpClass->getOneByMailId(intval($mailId)); if (empty($followUp)) { return; } if (empty($followUp->loop)) { return; } $lastEmail = $followUpClass->getLastEmail(intval($followUp->id)); if (empty($lastEmail) || $lastEmail->id != $mailId) { return; } $delay = 0; if (!empty($followUp->loop_delay)) { $delay = $followUp->loop_delay; } $mailToSkip = []; if (!empty($followUp->loop_mail_skip)) { $mailToSkip = json_decode($followUp->loop_mail_skip); } $followUpClass->triggerFollowUp(intval($followUp->id), intval($userId), $delay, $mailToSkip); } public function statClick(int $mailId, int $userid, bool $fromStat = false, string $userkey = ''): void { if (!$fromStat && !in_array($this->type, MailClass::TYPES_WITH_STATS)) { return; } $urlClass = new UrlClass(); $urls = []; $trackingSystemExternalWebsite = $this->config->get('trackingsystemexternalwebsite', 1); $trackingSystem = $this->config->get('trackingsystem', 'acymailing'); if (false === strpos($trackingSystem, 'acymailing') && false === strpos($trackingSystem, 'google')) { return; } if (strpos($trackingSystem, 'google') !== false) { $mail = $this->mailClass->getOneById($mailId); $campaignClass = new CampaignClass(); $campaign = $campaignClass->getOneCampaignByMailId($mailId); $utmCampaign = acym_getAlias($mail->subject); } preg_match_all(self::REGEX_URL, $this->body, $results); if (empty($results)) { return; } $countLinks = array_count_values($results[1]); if (array_product($countLinks) != 1) { $previousLinkHandled = ''; foreach ($results[1] as $key => $url) { if ($countLinks[$url] === 1) { continue; } // Handle the Outlook buttons that double the link, we need to consider it as the same link that's on the main button element $previousIsOutlook = false; if (strpos($results[0][$key], '<v:roundrect') === 0) { $previousLinkHandled = $results[0][$key]; if ($countLinks[$url] === 2) { $countLinks[$url] = 1; continue; } } elseif (strpos($previousLinkHandled, '<v:roundrect') === 0) { $previousIsOutlook = true; } $previousLinkHandled = $results[0][$key]; if (!$previousIsOutlook) { $countLinks[$url]--; } $toAddUrl = (strpos($url, '?') === false ? '?' : '&').'idU='.$countLinks[$url]; if ($previousIsOutlook) { $countLinks[$url]--; } $posHash = strpos($url, '#'); if ($posHash !== false) { $newURL = substr($url, 0, $posHash).$toAddUrl.substr($url, $posHash); } else { $newURL = $url.$toAddUrl; } $this->body = preg_replace('#href="('.preg_quote($url, '#').')"#Uis', 'href="'.$newURL.'"', $this->body, 1); $results[0][$key] = 'href="'.$newURL.'"'; $results[1][$key] = $newURL; } } foreach ($results[1] as $i => $url) { $urlsNotToTrack = [ 'task=unsub', 'task=disableTracking', 'fonts.googleapis.com', ]; $track = true; foreach ($urlsNotToTrack as $urlNotToTrack) { if (strpos($url, $urlNotToTrack)) { $track = false; break; } } //We don't track unsubscribe link if (isset($urls[$results[0][$i]]) || !$track) { continue; } //We often need to check if the url is within the website... but we don't care about http or https $simplifiedUrl = str_replace(['https://', 'http://', 'www.'], '', $url); $simplifiedWebsite = str_replace(['https://', 'http://', 'www.'], '', ACYM_LIVE); $internalUrl = strpos($simplifiedUrl, rtrim($simplifiedWebsite, '/')) === 0; // If this is an internal url //$subfolder : Record if the subfolder exists or not in which case it will be an external link $subfolder = false; if ($internalUrl) { $urlWithoutBase = str_replace($simplifiedWebsite, '', $simplifiedUrl); // If there is a /, it means there could be a sub-folder //It can be separated with a ? as well like administrator?option=com_content if (strpos($urlWithoutBase, '/') || strpos($urlWithoutBase, '?')) { // Get the supposed sub-folder name $slashPosition = strpos($urlWithoutBase, '/'); $folderName = substr($urlWithoutBase, 0, !$slashPosition ? strpos($urlWithoutBase, '?') : $slashPosition); //There is no dot in a folder! if (strpos($folderName, '.') === false) { $subfolder = @is_dir(ACYM_ROOT.$folderName); } } } if ((!$internalUrl || $subfolder) && $trackingSystemExternalWebsite != 1) { continue; } if (strpos($url, 'utm_source') === false && strpos($trackingSystem, 'google') !== false) { $idToUse = empty($campaign) ? $mailId : $campaign->id; $args = []; $args[] = empty($campaign->sending_params['utm_source']) ? 'utm_source=newsletter_'.$idToUse : 'utm_source='.urlencode($campaign->sending_params['utm_source']); $args[] = empty($campaign->sending_params['utm_medium']) ? 'utm_medium=email' : 'utm_medium='.urlencode($campaign->sending_params['utm_medium']); $args[] = empty($campaign->sending_params['utm_campaign']) ? 'utm_campaign='.$utmCampaign : 'utm_campaign='.urlencode($campaign->sending_params['utm_campaign']); //If we have an anchor we need to remove it and add it to the end of the url $anchor = ''; if (strpos($url, '#') !== false) { $anchor = substr($url, strpos($url, '#')); $url = substr($url, 0, strpos($url, '#')); } if (strpos($url, '?')) { $mytracker = $url.'&'.implode('&', $args); } else { $mytracker = $url.'?'.implode('&', $args); } //We add back the anchor if we had one $mytracker .= $anchor; $urls[$results[0][$i]] = str_replace($results[1][$i], $mytracker, $results[0][$i]); //Set the url variable so that we can use it later on... $url = $mytracker; } if (strpos($trackingSystem, 'acymailing') !== false) { $isAutologin = strpos($url, self::AUTOLOGIN_PARAMS) !== false; if ($isAutologin) { $url = $this->stripAutologinParams($url); } if (preg_match('#passw|modify#i', $url)) { continue; } $urlForRegistration = $url; if (!$fromStat) { $mytracker = $urlClass->getUrl($urlForRegistration, $mailId, $userid, $userkey); } if (empty($mytracker)) { continue; } if ($isAutologin) { $separator = strpos($mytracker, '?') === false ? '?' : '&'; $mytracker .= $separator.self::AUTOLOGIN_PARAMS; } $urls[$results[0][$i]] = str_replace($results[1][$i], $mytracker, $results[0][$i]); } } $this->body = str_replace(array_keys($urls), $urls, $this->body); } public function textVersion(string $html, bool $fullConvert = true): string { //Replace relative links into absolute before replacing the text version so that we keep correct urls $html = acym_absoluteURL($html); //If we come from a text version, we don't want to replace the spaces. //We will only do that if we come from an HTML Version to avoid breaking the user code if ($fullConvert) { //As in HTML multiple spaces are interpreted as only one space, we remove the multiple spaces for the text version $html = preg_replace('# +#', ' ', $html); //Same thing, return chars don't exist in html so we can simply remove them, neither \t $html = str_replace(["\n", "\r", "\t"], '', $html); } $removepictureslinks = "#< *a[^>]*> *< *img[^>]*> *< *\/ *a *>#isU"; $removeScript = "#< *script(?:(?!< */ *script *>).)*< */ *script *>#isU"; $removeStyle = "#< *style(?:(?!< */ *style *>).)*< */ *style *>#isU"; $removeStrikeTags = '#< *strike(?:(?!< */ *strike *>).)*< */ *strike *>#iU'; $replaceByTwoReturnChar = '#< *(h1|h2)[^>]*>#Ui'; $replaceByStars = '#< *li[^>]*>#Ui'; $replaceByReturnChar1 = '#< */ *(li|td|dt|tr|div|p)[^>]*> *< *(li|td|dt|tr|div|p)[^>]*>#Ui'; $replaceByReturnChar = '#< */? *(br|p|h1|h2|legend|h3|li|ul|dd|dt|h4|h5|h6|tr|td|div)[^>]*>#Ui'; $replaceLinks = '/< *a[^>]*href *= *"([^#][^"]*)"[^>]*>(.+)< *\/ *a *>/Uis'; $text = preg_replace( [ $removepictureslinks, $removeScript, $removeStyle, $removeStrikeTags, $replaceByTwoReturnChar, $replaceByStars, $replaceByReturnChar1, $replaceByReturnChar, $replaceLinks, ], ['', '', '', '', "\n\n", "\n* ", "\n", "\n", '${2} ( ${1} )'], $html ); //The striptags function may not do the job properly in some cases... $text = preg_replace('#(<|&\#60;)([^ \n\r\t])#i', '< ${2}', $text); //BE CAREFUL!!!! This space is not a space, it's a ALT0160!! which means $text = str_replace([" ", " "], ' ', acym_stripTags($text)); //BE CAREFUL!! That is magic code :) :) :) //@ is added on the call of html_entity_decode because on PHP 4, warnings are displayed using this function with utf-8 characters. $text = trim(@html_entity_decode($text, ENT_QUOTES, 'UTF-8')); if ($fullConvert) { //We do that one more time as some extra spaces may have appeared $text = preg_replace('# +#', ' ', $text); $text = preg_replace('#\n *\n\s+#', "\n\n", $text); } return $text; } /** * @throws Exception */ protected function embedImages(): bool { preg_match_all('/(src|background)=[\'|"]([^"\']*)[\'|"]/Ui', $this->Body, $images); if (empty($images[2])) { return true; } $embedSuccess = true; $mimetypes = [ 'bmp' => 'image/bmp', 'gif' => 'image/gif', 'jpeg' => 'image/jpeg', 'jpg' => 'image/jpeg', 'jpe' => 'image/jpeg', 'png' => 'image/png', 'tiff' => 'image/tiff', 'tif' => 'image/tiff', ]; $allImages = []; foreach ($images[2] as $i => $url) { //We don't add twice the same images otherwise there is a bug //and the picture is really attached but not in hidden base64 if (isset($allImages[$url])) { continue; } // Don't embed images with a controller, most likely the stats picture if (strpos($url, 'ctrl=') !== false) { continue; } $allImages[$url] = 1; // We convert the url into local directory $path = acym_internalUrlToPath($url); $path = $this->removeAdditionalParams($path); // The file has to be an image located in the website's folder $path = $this->getEmbeddableImagePath($path); if (empty($path)) { continue; } $ext = strtolower(pathinfo($path, PATHINFO_EXTENSION)); if (!isset($mimetypes[$ext])) { continue; } $filename = str_replace(['%', ' '], '_', basename($url)); $filename = $this->removeAdditionalParams($filename); $md5 = md5($filename); $cid = 'cid:'.$md5; // We only change the url if we were able to embed the image. if ($this->addEmbeddedImage($path, $md5, $filename, 'base64', $mimetypes[$ext])) { $this->Body = preg_replace('/'.preg_quote($images[0][$i], '/').'/Ui', $images[1][$i].'="'.$cid.'"', $this->Body); } else { $embedSuccess = false; } } return $embedSuccess; } private function getEmbeddableImagePath(string $path): string { // No url and no stream wrapper, we only read local files if (empty($path) || preg_match('#^[a-z][a-z\d+.-]*://#i', $path) === 1) { return ''; } // The file must be inside the website's folder $root = rtrim(ACYM_ROOT, DS).DS; if (strpos($path, $root) !== 0 || preg_match('#(^|[/\\\\])\.\.([/\\\\]|$)#', substr($path, strlen($root))) === 1) { return ''; } if (!is_file($path) || !is_readable($path)) { return ''; } // An image extension doesn't tell what the file actually contains, so we check the content itself $imageInfo = @getimagesize($path); if (empty($imageInfo['mime']) || strpos($imageInfo['mime'], 'image/') !== 0) { return ''; } return $path; } public function cleanText(?string $text): string { return trim(preg_replace('/(%0A|%0D|\n+|\r+)/i', '', (string)$text)); } /** * Adds shortcodes available in the email content */ public function addParam(string $name, $value): void { $tagName = '{'.$name.'}'; $this->parameters[$tagName] = $value; } public function overrideEmail(array $options): bool { $overrideAllEmails = $this->config->get('send_website_emails', 0) == 1; $overrideClass = new OverrideClass(); $override = $overrideClass->getMailByBaseContent($options['subject'], $options['message']); // We let the CMS send the email if (empty($override) && !$overrideAllEmails) { return false; } // AcyMailing needs to send the email $this->autoAddUser = true; if (empty($override)) { $this->trackEmail = false; return $this->overrideAllEmails($options); } else { $this->trackEmail = true; return $this->sendOverride($override, $options); } } public function isPortOpen(int $port, string $targetServer): bool { if (!function_exists('fsockopen')) { $this->portError = acym_translation('ACYM_FSOCKOPEN'); return false; } $errorCode = 0; $errorMessage = 0; // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fsockopen -- Connectivity test for SMTP ports. $fp = @fsockopen($targetServer, $port, $errorCode, $errorMessage, 5); if (is_resource($fp)) { // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_operations_fclose -- Closing the socket resource opened above, not a filesystem handle. fclose($fp); return true; } else { $this->portError = $errorCode.' - '.acym_utf8Encode($errorMessage); return false; } } private function getSendingMethodSettings(string $settingName, string $default = ''): string { if (empty($this->currentMethodSetting)) { return $this->config->get($settingName, $default); } return $this->currentMethodSetting[$settingName] ?? $default; } private function getSendingMethod(): string { $this->currentMethodSetting = []; $sendingMethods = $this->config->get('sending_method_list', '{}'); $sendingMethods = json_decode($sendingMethods, true); $sendingMethodsByList = $this->config->get('sending_method_list_by_list', '{}'); $sendingMethodsByList = json_decode($sendingMethodsByList, true); if (empty($this->listsIds) || empty($sendingMethods) || empty($sendingMethodsByList) || empty($sendingMethodsByList[$this->listsIds[0]])) { return $this->config->get('mailer_method', 'phpmail'); } $sendingMethodIds = []; foreach ($this->listsIds as $listId) { if (!empty($sendingMethodsByList[$listId])) { $sendingMethodIds[] = $sendingMethodsByList[$listId]; } } if (count($sendingMethodIds) !== count($this->listsIds) || count(array_unique($sendingMethodIds)) !== 1) { return $this->config->get('mailer_method', 'phpmail'); } $sendingMethodId = $sendingMethodIds[0]; if (empty($sendingMethods[$sendingMethodId])) { return $this->config->get('mailer_method', 'phpmail'); } $this->currentMethodSetting = $sendingMethods[$sendingMethodId]; return $sendingMethods[$sendingMethodId]['mailer_method']; } private function isExternal(string $method): void { $this->Mailer = 'external'; $this->externalMailer = $method; } private function storeArchiveVersion(int $mailId): void { if ($this->defaultMail[$mailId]->type !== MailClass::TYPE_STANDARD) { return; } $mailArchive = new \stdClass(); $alreadyExisting = $this->mailArchiveClass->getOneByMailId($mailId); if (!empty($alreadyExisting)) { $mailArchive->id = $alreadyExisting->id; } $mailArchive->mail_id = $mailId; $mailArchive->date = time(); $mailArchive->body = $this->defaultMail[$mailId]->body; $mailArchive->subject = $this->defaultMail[$mailId]->subject; $mailArchive->settings = $this->defaultMail[$mailId]->settings; $mailArchive->stylesheet = $this->defaultMail[$mailId]->stylesheet; $mailArchive->attachments = $this->defaultMail[$mailId]->attachments; $this->mailArchiveClass->save($mailArchive); } private function canTrack(int $mailId, object $user): bool { if ($this->isTest || empty($mailId) || empty($user) || !isset($user->tracking) || $user->tracking != 1) { return false; } $mail = $this->mailClass->getOneById($mailId); if (!empty($mail) && $mail->tracking != 1) { return false; } $lists = $this->mailClass->getAllListsByMailIdAndUserId($mailId, $user->id); foreach ($lists as $list) { if ($list->tracking != 1) { return false; } } return true; } /** * @param mixed $user * * @throws Exception */ private function loadUser($user, bool $force = false): object { if (is_numeric($user)) { $receiver = $this->userClass->getOneById($user); } elseif (is_object($user)) { $receiver = $user; } elseif (is_string($user) && strpos($user, '@')) { acym_setVar('acy_source', 'When sending a test'); $this->userClass->triggers = $this->userCreationTriggers; $receiver = $this->userClass->getOneByEmail($user, $force || $this->autoAddUser); } if (empty($receiver)) { throw new Exception(esc_attr(acym_translation('ACYM_USER_NOT_FOUND'))); } $this->userLanguage = empty($receiver->language) ? acym_getLanguageTag() : $receiver->language; $this->receiverEmail = (string)($receiver->email ?? ''); return $receiver; } private function prepareContent(int $mailId, array $options): void { $this->isHTML(); if (!empty($this->defaultMail[$mailId]->stylesheet)) { $this->stylesheet = $this->defaultMail[$mailId]->stylesheet; } $this->settings = empty($this->defaultMail[$mailId]->settings) ? [] : json_decode($this->defaultMail[$mailId]->settings, true); $this->Subject = $this->defaultMail[$mailId]->subject; $this->Body = $this->defaultMail[$mailId]->body; if ($this->isTest && !empty($options['testNote'])) { $this->Body = '<div style="text-align: center; padding: 25px; font-family: Poppins; font-size: 20px">'.$options['testNote'].'</div>'.$this->Body; } //We add the intro text at the top of the body if (!empty($this->introtext)) { $this->Body = $this->introtext.$this->Body; } if (!empty($this->defaultMail[$mailId]->preheader)) { $preHeader = '<!--[if !mso 9]><!--><div style="visibility:hidden;mso-hide:all;font-size:0;height:0;line-height:0;max-height:0;max-width:0;opacity:0;overflow:hidden;">'; $preHeader .= $this->defaultMail[$mailId]->preheader; $preHeader .= '</div><!--<![endif]-->'; //We want to insert the preview at the start of the body so we match the start of the mail preg_match('#(<(.*)<body(.*)>)#Uis', $this->Body, $matches); if (empty($matches) || empty($matches[1])) { $this->Body = $preHeader.$this->Body; } else { $this->Body = $matches[1].$preHeader.str_replace($matches[1], '', $this->Body); } } if (ACYM_CMS === 'wordpress') { ob_start(); $this->Body = do_shortcode($this->Body); ob_end_clean(); } } private function prepareHeaders(int $mailId, int $receiverId, array $options): void { // Specify a messageID which will be kept by most mail clients and in the feedback loop $subject = base64_encode(acym_rand(0, 9999999)).'AC'.$receiverId.'Y'.$this->defaultMail[$mailId]->id.'BA'.base64_encode(time().acym_rand(0, 99999)); $this->MessageID = '<'.preg_replace('|[^a-z0-9+_]|i', '', $subject).'@'.$this->serverHostname().'>'; $this->addCustomHeader('Feedback-ID', $this->defaultMail[$mailId]->id.':'.$receiverId.':'.$this->defaultMail[$mailId]->type.':'.base64_encode(ACYM_ROOT)); if (!empty($this->defaultMail[$mailId]->headers)) { $this->mailHeader = $this->defaultMail[$mailId]->headers; } if (!empty($options['headers'])) { foreach ($options['headers'] as $headerName => $headerValue) { $this->addCustomHeader(trim($headerName), trim($headerValue)); } } } private function prepareAddresses(int $mailId, object $receiver): void { $receiverName = ''; if ($this->config->get('add_names', true)) { $receiverName = $this->cleanText($receiver->name); //We do not set a name if the name is the same as the email address, it prevents the email from being sent with some mail servers if ($receiverName == $this->cleanText($receiver->email)) { $receiverName = ''; } } $this->addAddress($this->cleanText($receiver->email), $receiverName); $this->setFrom($this->getSendSettings('from_email', $mailId), $this->getSendSettings('from_name', $mailId)); $this->acymAddReplyTo($this->defaultMail[$mailId]->reply_to_email ?? '', $this->defaultMail[$mailId]->reply_to_name ?? ''); // This is the bounce email address if (!empty($this->defaultMail[$mailId]->bounce_email)) { $this->Sender = $this->cleanText($this->defaultMail[$mailId]->bounce_email); } else { $this->Sender = $this->cleanText($this->config->get('bounce_email')); } } /** * @throws Exception */ private function prepareBcc(int $mailId, array $options): void { $bccAddresses = []; if (!empty($options['bcc'])) { $bccAddresses = $options['bcc']; } if (!empty($this->defaultMail[$mailId]->bcc)) { $emailBccAddresses = explode(';', trim(str_replace([',', ' '], ';', $this->defaultMail[$mailId]->bcc))); $bccAddresses = array_unique(array_merge($bccAddresses, $emailBccAddresses)); } if (!empty($bccAddresses)) { $bccAddresses = array_filter($bccAddresses); // loadUser() overwrites the current receiver, keep the real one $receiverEmail = $this->receiverEmail; $userLanguage = $this->userLanguage; foreach ($bccAddresses as $oneBccAddress) { $this->loadUser($oneBccAddress, true); $this->addBCC($oneBccAddress); } $this->receiverEmail = $receiverEmail; $this->userLanguage = $userLanguage; } } private function prepareAttachments(int $mailId, array $options): void { $attachments = []; if (!empty($this->defaultMail[$mailId]->attach)) { $attachments = $this->defaultMail[$mailId]->attach; } if (!empty($options['attachments'])) { $attachments = array_merge($attachments, $options['attachments']); } if (empty($attachments)) { return; } if ($this->config->get('embed_files')) { foreach ($attachments as $attachment) { $this->addAttachment($attachment->filename, $attachment->name); } } else { $attachStringHTML = '<fieldset><legend>'.acym_translation('ACYM_ATTACHMENTS').'</legend><table>'; foreach ($attachments as $attachment) { $attachStringHTML .= '<tr><td><a href="'.$attachment->url.'" target="_blank">'.$attachment->name.'</a></td></tr>'; } $attachStringHTML .= '</table></fieldset>'; if ($this->config->get('attachments_position', 'bottom') === 'top') { $this->Body = $attachStringHTML.'<br />'.$this->Body; } else { $this->Body .= '<br />'.$attachStringHTML; } } } private function replaceDynamicContent(int $mailId): void { $this->replaceParams(); // Left side are mail columns on which we replace the short codes $this->body = &$this->Body; $this->altbody = &$this->AltBody; $this->subject = &$this->Subject; $this->from = &$this->From; $this->fromName = &$this->FromName; $this->replyto = &$this->ReplyTo; $this->replyname = $this->defaultMail[$mailId]->reply_to_name ?? ''; $this->replyemail = $this->defaultMail[$mailId]->reply_to_email ?? ''; $this->mailId = intval($this->defaultMail[$mailId]->id); $this->id = $this->mailId; $this->creator_id = intval($this->defaultMail[$mailId]->creator_id); $this->type = $this->defaultMail[$mailId]->type; $this->stylesheet = &$this->stylesheet; $this->links_language = $this->defaultMail[$mailId]->links_language; } private function stripAutologinParams(string $url): string { return str_replace( ['?'.self::AUTOLOGIN_PARAMS.'&', '?'.self::AUTOLOGIN_PARAMS, '&'.self::AUTOLOGIN_PARAMS], ['?', '', ''], $url ); } private function prepareTracking(int $mailId, object $receiver): void { if ($this->canTrack($mailId, $receiver)) { $receiver->id = intval($receiver->id); $this->statPicture($this->mailId, $receiver->id); $this->body = acym_absoluteURL($this->body); $this->statClick($this->mailId, $receiver->id, false, $receiver->key ?? ''); if (acym_isTrackingSalesActive()) { $this->trackingSales($this->mailId, $receiver->id); } } } private function handleDtexts(object $receiver): bool { $this->replaceParams(); // Sending a spam-test, use the current user instead if (strpos($receiver->email, '@mt.acyba.com') !== false) { $currentUser = $this->userClass->getOneByEmail(acym_currentUserEmail()); if (empty($currentUser)) { $currentUser = $receiver; } $result = acym_trigger('replaceUserInformation', [&$this, &$currentUser, true]); } else { $result = acym_trigger('replaceUserInformation', [&$this, &$receiver, true]); if (!empty($result)) { foreach ($result as $oneResult) { if (!empty($oneResult) && !$oneResult['send']) { $this->reportMessage = $oneResult['message']; return false; } } } } global $acymLanguages; if (!empty($acymLanguages['userLanguage'])) { unset($acymLanguages['userLanguage']); } // A user based dtext may have inserted HTML content, we need to re-inline the CSS to it foreach ($result as $oneResult) { if (!empty($oneResult['emogrifier'])) { $this->prepareEmailContent(); break; } } if ($this->config->get('multiple_part', false)) { $bodyForText = preg_replace('#<head\b[^>]*>.*?</head\s*>#is', '', $this->Body); $this->altbody = $this->textVersion($bodyForText); } $this->replaceParams(); return true; } private function initStatistics(bool $status, int $receiverId): void { if ($this->trackEmail) { $statsAdd = []; $statsAdd[$this->mailId][intval($status)][] = $receiverId; $queueHelper = new QueueHelper(); $queueHelper->statsAdd($statsAdd); $this->trackEmail = false; } } private function trackingSales(int $mailId, int $userId): void { preg_match_all('#href[ ]*=[ ]*"(?!mailto:|\#|ymsgr:|callto:|file:|ftp:|webcal:|skype:|tel:)([^"]+)"#Ui', $this->body, $results); if (empty($results)) { return; } foreach ($results[1] as $url) { $simplifiedUrl = str_replace(['https://', 'http://', 'www.'], '', $url); $simplifiedWebsite = str_replace(['https://', 'http://', 'www.'], '', ACYM_LIVE); if (strpos($simplifiedUrl, rtrim($simplifiedWebsite, '/')) === false || strpos($url, 'task=unsub')) continue; $toAddUrl = (strpos($url, '?') === false ? '?' : '&').'linkReferal='.$mailId.'-'.$userId; $posHash = strpos($url, '#'); if ($posHash !== false) { $newURL = substr($url, 0, $posHash).$toAddUrl.substr($url, $posHash); } else { $newURL = $url.$toAddUrl; } $this->body = preg_replace('#href="('.preg_quote($url, '#').')"#Uis', 'href="'.$newURL.'"', $this->body); } } private function statPicture(int $mailId, int $userId): void { $pictureLink = acym_frontendLink('frontstats&task=openStats&id='.$mailId.'&userid='.$userId, true, false); $statPicture = '<img class="spict" alt="" src="'.$pictureLink.'" border="0" width="50" height="1" />'; if (strpos($this->body, '</body>')) { $this->body = str_replace('</body>', $statPicture.'</body>', $this->body); } else { $this->body .= $statPicture; } } private function removeAdditionalParams(string $url): string { $additionalParamsPos = strpos($url, '?'); if (!empty($additionalParamsPos)) { $url = substr($url, 0, $additionalParamsPos); } return $url; } private function replaceParams(): void { if (empty($this->parameters)) { return; } $pluginHelper = new PluginHelper(); //We create an extra tag which contains all possible parameters... $this->generateAllParams(); $vars = [ 'Subject', 'Body', 'From', 'FromName', 'replyname', 'replyemail', ]; foreach ($vars as $oneVar) { if (!empty($this->$oneVar)) { $this->$oneVar = $pluginHelper->replaceDText($this->$oneVar, $this->parameters); } } if (!empty($this->ReplyTo)) { foreach ($this->ReplyTo as $i => $replyto) { foreach ($replyto as $a => $oneval) { $this->ReplyTo[$i][$a] = $pluginHelper->replaceDText($this->ReplyTo[$i][$a], $this->parameters); } } } } /** * Create a new parameter called {alltags} which will include all the others */ private function generateAllParams(): void { $result = '<table style="border:1px solid;border-collapse:collapse;" border="1" cellpadding="10"><tr><td>Tag</td><td>Value</td></tr>'; foreach ($this->parameters as $name => $value) { //Just in case of... if (!is_string($value)) continue; $result .= '<tr><td>'.trim($name, '{}').'</td><td>'.$value.'</td></tr>'; } $result .= '</table>'; $this->addParam('allshortcodes', $result); } private function sendOverride(object $override, array $options): bool { // 2 - Prepare the email and params for ($i = 1; $i < count($override->parameters); $i++) { $oneParam = $override->parameters[$i]; // Joomla emails have links as text, convert them $unmodified = $oneParam; $oneParam = preg_replace( '/(http|https):\/\/(.*)/', '<a href="$1://$2" target="_blank">$1://$2</a>', $oneParam, -1, $count ); if ($count > 0) { $this->addParam('link'.$i, $unmodified); } $this->addParam('param'.$i, $oneParam); } $this->addParam('subject', $options['subject']); // 3 - Send the email $this->overrideEmailToSend = $override; $statusSend = $this->sendOne($override->id, $options['to'], $options); if (!$statusSend && !empty($this->reportMessage)) { // Something went wrong when trying to send the override, log the information in the cron logs file $cronHelper = new CronHelper(); $cronHelper->saveReport([$this->reportMessage]); } return $statusSend; } public function getSendSettings(string $type, int $mailId = 0): string { if (!in_array($type, ['from_name', 'from_email', 'replyto_name', 'replyto_email', 'bounce_email'])) { return ''; } $mailType = strpos($type, 'replyto') !== false ? str_replace('replyto', 'reply_to', $type) : $type; if (!empty($mailId) && !empty($this->defaultMail[$mailId]->$mailType)) { return $this->defaultMail[$mailId]->$mailType; } $lang = empty($this->userLanguage) ? acym_getLanguageTag() : $this->userLanguage; $setting = $this->config->get($type); $translation = $this->config->get('sender_info_translation'); if (!empty($translation)) { $translation = json_decode($translation, true); if (!empty($translation[$lang][$type])) { $setting = $translation[$lang][$type]; } } return $setting; } private function prepareEmailContent(int $mailId = 0): void { $this->handleRelativeURLs($mailId); $this->inlineCSS($mailId); $this->finalizeHtmlStructure($mailId); } private function handleRelativeURLs(int $mailId): void { $mail = empty($mailId) ? $this : $this->defaultMail[$mailId]; $mail->body = acym_absoluteURL($mail->body); } private function inlineCSS(int $mailId): void { $mail = empty($mailId) ? $this : $this->defaultMail[$mailId]; if (empty($mail->body)) { return; } global $acymailingEmogrifiedMediaCSS; $acymailingEmogrifiedMediaCSS = ''; $style = $this->getEmailStylesheet($mail); // Inline styles for mail client compatibility: https://www.caniemail.com/features/html-style/ // It also deletes the <style> tags from the body $cssInliner = CssInliner::fromHtml($mail->body)->inlineCss(implode('', $style)); $domDocument = $cssInliner->getDomDocument(); // Remove the TinyMCE ids and the trailing ; in styles $mail->body = preg_replace( [ '# id="mce_\d+"#Ui', '#(style="[^"]+);"#Ui', ], [ '', '$1"', ], HtmlPruner::fromDomDocument($domDocument) ->removeRedundantClassesAfterCssInlined($cssInliner) ->renderBodyContent() ); // This character is added in the title and text blocks to prevent TinyMCE from adding an extra space when the block is empty $mail->body = str_replace('‍', '', $mail->body); // Remove the extra spaces in the style attributes $mail->body = preg_replace_callback( '#style="([^"]+)"#Ui', function ($matches) { return 'style="'.str_replace(['; ', ': '], [';', ':'], $matches[1]).'"'; }, $mail->body ); } private function finalizeHtmlStructure(int $mailId): void { $mail = empty($mailId) ? $this : $this->defaultMail[$mailId]; $finalContent = '<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">'; $finalContent .= '<head>'; $finalContent .= '<!--[if gte mso 9]><xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml><![endif]-->'; $finalContent .= '<meta http-equiv="Content-Type" content="text/html; charset='.strtolower($this->config->get('charset')).'" />'."\n"; $finalContent .= '<meta name="viewport" content="width=device-width, initial-scale=1.0" />'."\n"; $finalContent .= '<title>'.$mail->subject.'</title>'."\n"; //TODO maybe insert this CSS to a second <head> tag? // Source: https://designmodo.com/html-css-emails/#:~:text=words%20of%20wisdom-,Internal%C2%A0CSS,-Undoubtedly%2C%20one%20of // Apparently only for Yahoo on Android: https://www.caniemail.com/features/html-style/ global $acymailingEmogrifiedMediaCSS; $finalContent .= '<style>'.$acymailingEmogrifiedMediaCSS.'</style>'; $finalContent .= '<!--[if mso]><style type="text/css">#acym__wysid__template center > table { width: 580px; }</style><![endif]-->'; $finalContent .= '<!--[if !mso]><!--><style>#acym__wysid__template center > table { width: 100%; }</style><!--<![endif]-->'; if (!empty($mail->headers)) { $finalContent .= $mail->headers; } $finalContent .= '</head>'; preg_match('@<[^>"t]*body[^>]*>@', $mail->body, $matches); if (empty($matches[0])) { $mail->body = '<body>'.$mail->body.'</body>'; } else { preg_match('@<[^>"t]*/body[^>]*>@', $mail->body, $matches); if (empty($matches[0])) { $mail->body .= '</body>'; } } $finalContent .= $mail->body; $finalContent .= '</html>'; $mail->body = $finalContent; } private function getEmailStylesheet(object $mail): array { $style = []; // If this is a drag and drop mail we add foundation css for email if (strpos($mail->body, 'acym__wysid__template') !== false) { static $foundationCSS = null; if (empty($foundationCSS)) { $foundationCSS = acym_fileGetContent(ACYM_MEDIA.'css'.DS.'libraries'.DS.'foundation_email.min.css'); // Remove the #acym__wysid__template prefix, not needed in sent emails $foundationCSS = str_replace('#acym__wysid__template ', '', $foundationCSS); } $style['foundation'] = $foundationCSS; } static $emailFixes = null; if (empty($emailFixes)) { $emailFixes = acym_getEmailCssFixes(); } $style['fixes'] = $emailFixes; if (!empty($mail->stylesheet)) { $style['custom_stylesheet'] = $mail->stylesheet; } $settingsStyles = $this->editorHelper->getSettingsStyle($mail->settings); if (!empty($settingsStyles)) { $style['settings_stylesheet'] = $settingsStyles; } return $style; } private function overrideAllEmails(array $options): bool { $this->trackEmail = false; $this->addParam('subject', $options['subject']); if (isset($options['isHtml']) && !$options['isHtml']) { $options['message'] = nl2br($options['message']); } $this->addParam('body', $options['message']); $mailClass = new MailClass(); $this->overrideEmailToSend = $mailClass->getOneByName('acy_notification_cms'); if (empty($this->overrideEmailToSend)) { return false; } $statusSend = $this->sendOne($this->overrideEmailToSend->id, $options['to'], $options); if (!$statusSend && !empty($this->reportMessage)) { // Something went wrong when trying to send the override, log the information in the cron logs file $cronHelper = new CronHelper(); $cronHelper->addMessage($this->reportMessage); $cronHelper->saveReport(); } return $statusSend; } /* * * * * * * * * * * * * * * * * * * * Override PHPMailer's methods * * * * * * * * * * * * * * * * * * * */ /** * @throws Exception */ private function acymAddReplyTo(string $email, string $name): void { if (empty($email)) { return; } $replyToName = $this->config->get('add_names', true) ? $this->cleanText(trim($name)) : ''; $replyToEmail = trim($email); if (substr_count($replyToEmail, '@') > 1) { //We have more than one reply to... $replyToEmailArray = explode(';', str_replace([';', ','], ';', $replyToEmail)); $replyToNameArray = explode(';', str_replace([';', ','], ';', $replyToName)); foreach ($replyToEmailArray as $i => $oneReplyTo) { $this->addReplyTo($this->cleanText($oneReplyTo), @$replyToNameArray[$i]); } } else { $this->addReplyTo($this->cleanText($replyToEmail), $replyToName); } } public function setFrom($email, $name = '', $auto = false) { if (!empty($email)) { $this->From = $this->cleanText($email); } if (!empty($name) && $this->config->get('add_names', true)) { $this->FromName = $this->cleanText($name); } } /** * Outputs debugging info via user-defined method * * @param string $str */ protected function edebug($str) { if (strpos($this->ErrorInfo, $str) === false) { $this->ErrorInfo .= ' '.$str; } } public function getMailMIME() { $result = parent::getMailMIME(); //Added by Adrien on 11.02.2011 and then on 06 April 2011 otherwise we have 3 return char on phpMail or other functions $result = rtrim($result, static::$LE); if ($this->Mailer != 'mail') { $result .= static::$LE.static::$LE; } return $result; } public static function validateAddress($address, $patternselect = null) { return true; } }