config = $config; $this->pConfig = $pConfig; $this->logger = $logger; $this->baseUrl = $baseURL; $this->l10n = $defaultLang; $this->siteEmailAddress = $this->config->get('config', 'sender_email'); if (empty($sysEmailAddress)) { $hostname = $this->baseUrl->getHostname(); if (strpos($hostname, ':')) { $hostname = substr($hostname, 0, strpos($hostname, ':')); } $this->siteEmailAddress = 'noreply@' . $hostname; } $this->siteEmailName = $this->config->get('config', 'sitename', 'Friendica Social Network'); } /** * Gets the site's default sender email address * * @return string */ public function getSiteEmailAddress() { return $this->siteEmailAddress; } /** * Gets the site's default sender name * * @return string */ public function getSiteEmailName() { return $this->siteEmailName; } /** * Creates a new system email * * @return SystemMailBuilder */ public function newSystemMail() { return new SystemMailBuilder($this->l10n, $this->baseUrl, $this->config, $this->logger, $this->getSiteEmailAddress(), $this->getSiteEmailName()); } /** * Creates a new mail for notifications * * @see Notify * * @param L10n $l10n The chosen language for the new email * * @return NotifyMailBuilder */ public function newNotifyMail(L10n $l10n) { return new NotifyMailBuilder($l10n, $this->baseUrl, $this->config, $this->getSiteEmailAddress(), $this->getSiteEmailName()); } /** * Send a multipart/alternative message with Text and HTML versions * * @param IEmail $email The email to send * * @return bool * @throws InternalServerErrorException */ public function send(IEmail $email) { Hook::callAll('emailer_send_prepare', $email); if (empty($email)) { return true; } $email_textonly = false; if (!empty($email->getRecipientUid())) { $email_textonly = $this->pConfig->get($email->getRecipientUid(), 'system', 'email_textonly'); } $fromName = Email::encodeHeader(html_entity_decode($email->getFromName(), ENT_QUOTES, 'UTF-8'), 'UTF-8'); $fromAddress = $email->getFromAddress(); $replyTo = $email->getReplyTo(); $messageSubject = Email::encodeHeader(html_entity_decode($email->getSubject(), ENT_QUOTES, 'UTF-8'), 'UTF-8'); // generate a mime boundary $mimeBoundary = rand(0, 9) . '-' . rand(100000000, 999999999) . '-' . rand(100000000, 999999999) . '=:' . rand(10000, 99999); // generate a multipart/alternative message header $messageHeader = $email->getAdditionalMailHeader() . "From: $fromName <{$fromAddress}>\n" . "Reply-To: $fromName <{$replyTo}>\n" . "MIME-Version: 1.0\n" . "Content-Type: multipart/alternative; boundary=\"{$mimeBoundary}\""; // assemble the final multipart message body with the text and html types included $textBody = chunk_split(base64_encode($email->getMessage(true))); $htmlBody = chunk_split(base64_encode($email->getMessage())); $multipartMessageBody = "--" . $mimeBoundary . "\n" . // plain text section "Content-Type: text/plain; charset=UTF-8\n" . "Content-Transfer-Encoding: base64\n\n" . $textBody . "\n"; if (!$email_textonly && !is_null($email->getMessage())) { $multipartMessageBody .= "--" . $mimeBoundary . "\n" . // text/html section "Content-Type: text/html; charset=UTF-8\n" . "Content-Transfer-Encoding: base64\n\n" . $htmlBody . "\n"; } $multipartMessageBody .= "--" . $mimeBoundary . "--\n"; // message ending if ($this->config->get('system', 'sendmail_params', true)) { $sendmail_params = '-f ' . $fromAddress; } else { $sendmail_params = null; } // send the message $hookdata = [ 'to' => $email->getToAddress(), 'subject' => $messageSubject, 'body' => $multipartMessageBody, 'headers' => $messageHeader, 'parameters' => $sendmail_params, 'sent' => false, ]; Hook::callAll('emailer_send', $hookdata); if ($hookdata['sent']) { return true; } $res = mail( $hookdata['to'], $hookdata['subject'], $hookdata['body'], $hookdata['headers'], $hookdata['parameters'] ); $this->logger->debug('header ' . 'To: ' . $email->getToAddress() . '\n' . $messageHeader); $this->logger->debug('return value ' . (($res) ? 'true' : 'false')); return $res; } }