test demonstrating failure to resolve token
[civicrm-core.git] / CRM / Utils / Mail.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17class CRM_Utils_Mail {
18
247eb841
TO
19 /**
20 * Create a new mailer to send any mail from the application.
21 *
22 * Note: The mailer is opened in persistent mode.
23 *
24 * Note: You probably don't want to call this directly. Get a reference
25 * to the mailer through the container.
26 *
27 * @return Mail
ee3db087
SL
28 *
29 * @throws CRM_Core_Exception
247eb841
TO
30 */
31 public static function createMailer() {
aaffa79f 32 $mailingInfo = Civi::settings()->get('mailing_backend');
247eb841 33
c9d8809c 34 /*@var Mail $mailer*/
247eb841
TO
35 if ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_REDIRECT_TO_DB ||
36 (defined('CIVICRM_MAILER_SPOOL') && CIVICRM_MAILER_SPOOL)
37 ) {
be2fb01f 38 $mailer = self::_createMailer('CRM_Mailing_BAO_Spool', []);
247eb841
TO
39 }
40 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_SMTP) {
41 if ($mailingInfo['smtpServer'] == '' || !$mailingInfo['smtpServer']) {
2efa8782 42 Civi::log()->error(ts('There is no valid smtp server setting. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the SMTP Server.', [1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1')]));
ee3db087 43 throw new CRM_Core_Exception(ts('There is no valid smtp server setting. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the SMTP Server.', [1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1')]));
247eb841
TO
44 }
45
46 $params['host'] = $mailingInfo['smtpServer'] ? $mailingInfo['smtpServer'] : 'localhost';
47 $params['port'] = $mailingInfo['smtpPort'] ? $mailingInfo['smtpPort'] : 25;
48
49 if ($mailingInfo['smtpAuth']) {
50 $params['username'] = $mailingInfo['smtpUsername'];
03bfb187 51 $params['password'] = \Civi::service('crypto.token')->decrypt($mailingInfo['smtpPassword']);
247eb841
TO
52 $params['auth'] = TRUE;
53 }
54 else {
55 $params['auth'] = FALSE;
56 }
57
ef84aa00 58 /*
59 * Set the localhost value, CRM-3153
60 * Use the host name of the web server, falling back to the base URL
61 * (eg when using the PHP CLI), and then falling back to localhost.
62 */
63 $params['localhost'] = CRM_Utils_Array::value(
64 'SERVER_NAME',
65 $_SERVER,
66 CRM_Utils_Array::value(
67 'host',
68 parse_url(CIVICRM_UF_BASEURL),
69 'localhost'
70 )
71 );
247eb841
TO
72
73 // also set the timeout value, lets set it to 30 seconds
74 // CRM-7510
75 $params['timeout'] = 30;
76
77 // CRM-9349
78 $params['persist'] = TRUE;
79
80 $mailer = self::_createMailer('smtp', $params);
81 }
82 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_SENDMAIL) {
83 if ($mailingInfo['sendmail_path'] == '' ||
84 !$mailingInfo['sendmail_path']
85 ) {
2efa8782 86 Civi::log()->error(ts('There is no valid sendmail path setting. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the sendmail server.', [1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1')]));
ee3db087 87 throw new CRM_Core_Exception(ts('There is no valid sendmail path setting. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the sendmail server.', [1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1')]));
247eb841
TO
88 }
89 $params['sendmail_path'] = $mailingInfo['sendmail_path'];
90 $params['sendmail_args'] = $mailingInfo['sendmail_args'];
91
92 $mailer = self::_createMailer('sendmail', $params);
93 }
94 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_MAIL) {
be2fb01f 95 $mailer = self::_createMailer('mail', []);
247eb841
TO
96 }
97 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_MOCK) {
c9d8809c 98 $mailer = self::_createMailer('mock', $mailingInfo);
247eb841
TO
99 }
100 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_DISABLED) {
2efa8782 101 Civi::log()->info(ts('Outbound mail has been disabled. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the OutBound Email.', [1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1')]));
be2fb01f 102 CRM_Core_Error::statusBounce(ts('Outbound mail has been disabled. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the OutBound Email.', [1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1')]));
247eb841
TO
103 }
104 else {
2efa8782 105 Civi::log()->error(ts('There is no valid SMTP server Setting Or SendMail path setting. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the OutBound Email.', [1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1')]));
247eb841 106 CRM_Core_Error::debug_var('mailing_info', $mailingInfo);
be2fb01f 107 CRM_Core_Error::statusBounce(ts('There is no valid SMTP server Setting Or sendMail path setting. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the OutBound Email.', [1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1')]));
247eb841
TO
108 }
109 return $mailer;
110 }
111
112 /**
113 * Create a new instance of a PEAR Mail driver.
114 *
115 * @param string $driver
116 * 'CRM_Mailing_BAO_Spool' or a name suitable for Mail::factory().
117 * @param array $params
118 * @return object
119 * More specifically, a class which implements the "send()" function
120 */
121 public static function _createMailer($driver, $params) {
122 if ($driver == 'CRM_Mailing_BAO_Spool') {
123 $mailer = new CRM_Mailing_BAO_Spool($params);
124 }
125 else {
126 $mailer = Mail::factory($driver, $params);
dee6e582
TO
127 }
128
129 // Previously, CiviCRM bundled patches to change the behavior of 3 specific drivers. Use wrapper/filters to avoid patching.
130 $mailer = new CRM_Utils_Mail_FilteredPearMailer($driver, $params, $mailer);
131 if (in_array($driver, ['smtp', 'mail', 'sendmail'])) {
132 $mailer->addFilter('2000_log', ['CRM_Utils_Mail_Logger', 'filter']);
133 $mailer->addFilter('2100_validate', function ($mailer, &$recipients, &$headers, &$body) {
134 if (!is_array($headers)) {
135 return PEAR::raiseError('$headers must be an array');
136 }
137 });
247eb841 138 }
f2b63bd3 139 CRM_Utils_Hook::alterMailer($mailer, $driver, $params);
247eb841
TO
140 return $mailer;
141 }
142
6a488035
TO
143 /**
144 * Wrapper function to send mail in CiviCRM. Hooks are called from this function. The input parameter
145 * is an associateive array which holds the values of field needed to send an email. These are:
146 *
147 * from : complete from envelope
148 * toName : name of person to send email
149 * toEmail : email address to send to
150 * cc : email addresses to cc
151 * bcc : email addresses to bcc
152 * subject : subject of the email
153 * text : text of the message
154 * html : html version of the message
155 * replyTo : reply-to header in the email
52f4ecb2
SL
156 * returnpath : email address for bounces to be sent to
157 * messageId : Message ID for this email mesage
6a488035
TO
158 * attachments: an associative array of
159 * fullPath : complete pathname to the file
160 * mime_type: mime type of the attachment
161 * cleanName: the user friendly name of the attachmment
162 *
77855840
TO
163 * @param array $params
164 * (by reference).
6a488035 165 *
ae5ffbb7
TO
166 * @return bool
167 * TRUE if a mail was sent, else FALSE.
6a488035 168 */
83b2b36b 169 public static function send(array &$params): bool {
e633aba2 170 $defaultReturnPath = CRM_Core_BAO_MailSettings::defaultReturnPath();
6a488035 171 $includeMessageId = CRM_Core_BAO_MailSettings::includeMessageId();
353ffa53 172 $emailDomain = CRM_Core_BAO_MailSettings::defaultDomain();
9c1bc317 173 $from = $params['from'] ?? NULL;
e633aba2
OT
174 if (!$defaultReturnPath) {
175 $defaultReturnPath = self::pluckEmailFromHeader($from);
6a488035 176 }
6a488035
TO
177
178 // first call the mail alter hook
38108cce 179 CRM_Utils_Hook::alterMailParams($params, 'singleEmail');
6a488035
TO
180
181 // check if any module has aborted mail sending
8cc574cf 182 if (!empty($params['abortMailSend']) || empty($params['toEmail'])) {
6a488035
TO
183 return FALSE;
184 }
185
9c1bc317
CW
186 $textMessage = $params['text'] ?? NULL;
187 $htmlMessage = $params['html'] ?? NULL;
188 $attachments = $params['attachments'] ?? NULL;
6a488035
TO
189
190 // CRM-6224
191 if (trim(CRM_Utils_String::htmlToText($htmlMessage)) == '') {
192 $htmlMessage = FALSE;
193 }
194
be2fb01f 195 $headers = [];
6a488035 196 // CRM-10699 support custom email headers
a7488080 197 if (!empty($params['headers'])) {
6a488035
TO
198 $headers = array_merge($headers, $params['headers']);
199 }
200 $headers['From'] = $params['from'];
ae5ffbb7
TO
201 $headers['To'] = self::formatRFC822Email(
202 CRM_Utils_Array::value('toName', $params),
203 CRM_Utils_Array::value('toEmail', $params),
204 FALSE
205 );
c69abeee
MW
206
207 // On some servers mail() fails when 'Cc' or 'Bcc' headers are defined but empty.
208 foreach (['Cc', 'Bcc'] as $optionalHeader) {
9c1bc317 209 $headers[$optionalHeader] = $params[strtolower($optionalHeader)] ?? NULL;
c69abeee
MW
210 if (empty($headers[$optionalHeader])) {
211 unset($headers[$optionalHeader]);
212 }
213 }
214
9c1bc317 215 $headers['Subject'] = $params['subject'] ?? NULL;
6a488035
TO
216 $headers['Content-Type'] = $htmlMessage ? 'multipart/mixed; charset=utf-8' : 'text/plain; charset=utf-8';
217 $headers['Content-Disposition'] = 'inline';
218 $headers['Content-Transfer-Encoding'] = '8bit';
e633aba2 219 $headers['Return-Path'] = CRM_Utils_Array::value('returnPath', $params, $defaultReturnPath);
361fb6c0 220
6a488035 221 // CRM-11295: Omit reply-to headers if empty; this avoids issues with overzealous mailservers
2e35712a 222 $replyTo = CRM_Utils_Array::value('replyTo', $params, CRM_Utils_Array::value('from', $params));
361fb6c0 223
6a488035
TO
224 if (!empty($replyTo)) {
225 $headers['Reply-To'] = $replyTo;
226 }
227 $headers['Date'] = date('r');
228 if ($includeMessageId) {
52f4ecb2 229 $headers['Message-ID'] = $params['messageId'] ?? '<' . uniqid('civicrm_', TRUE) . "@$emailDomain>";
6a488035 230 }
a7488080 231 if (!empty($params['autoSubmitted'])) {
6a488035
TO
232 $headers['Auto-Submitted'] = "Auto-Generated";
233 }
234
50bfb460 235 // make sure we has to have space, CRM-6977
be2fb01f 236 foreach (['From', 'To', 'Cc', 'Bcc', 'Reply-To', 'Return-Path'] as $fld) {
6a488035
TO
237 if (isset($headers[$fld])) {
238 $headers[$fld] = str_replace('"<', '" <', $headers[$fld]);
239 }
240 }
241
242 // quote FROM, if comma is detected AND is not already quoted. CRM-7053
243 if (strpos($headers['From'], ',') !== FALSE) {
244 $from = explode(' <', $headers['From']);
245 $headers['From'] = self::formatRFC822Email(
246 $from[0],
247 substr(trim($from[1]), 0, -1),
248 TRUE
249 );
250 }
251
252 require_once 'Mail/mime.php';
253 $msg = new Mail_mime("\n");
254 if ($textMessage) {
255 $msg->setTxtBody($textMessage);
256 }
257
258 if ($htmlMessage) {
259 $msg->setHTMLBody($htmlMessage);
260 }
261
262 if (!empty($attachments)) {
83b2b36b 263 foreach ($attachments as $attach) {
6a488035
TO
264 $msg->addAttachment(
265 $attach['fullPath'],
266 $attach['mime_type'],
d0d1c38b 267 $attach['cleanName'],
268 TRUE,
269 'base64',
270 'attachment',
271 (isset($attach['charset']) ? $attach['charset'] : '')
6a488035
TO
272 );
273 }
274 }
275
276 $message = self::setMimeParams($msg);
b2c0dbe4 277 $headers = $msg->headers($headers);
6a488035 278
be2fb01f 279 $to = [$params['toEmail']];
048222df 280 $mailer = \Civi::service('pear_mail');
cbcec379 281
8125eb18
NG
282 // CRM-3795, CRM-7355, CRM-7557, CRM-9058, CRM-9887, CRM-12883, CRM-19173 and others ...
283 // The PEAR library requires different parameters based on the mailer used:
284 // * Mail_mail requires the Cc/Bcc recipients listed ONLY in the $headers variable
285 // * All other mailers require that all be recipients be listed in the $to array AND that
286 // the Bcc must not be present in $header as otherwise it will be shown to all recipients
287 // ref: https://pear.php.net/bugs/bug.php?id=8047, full thread and answer [2011-04-19 20:48 UTC]
e4c75084
TO
288 // TODO: Refactor this quirk-handler as another filter in FilteredPearMailer. But that would merit review of impact on universe.
289 $driver = ($mailer instanceof CRM_Utils_Mail_FilteredPearMailer) ? $mailer->getDriver() : NULL;
290 $isPhpMail = (get_class($mailer) === "Mail_mail" || $driver === 'mail');
291 if (!$isPhpMail) {
ea2eebc3
NG
292 // get emails from headers, since these are
293 // combination of name and email addresses.
e7292422 294 if (!empty($headers['Cc'])) {
9c1bc317 295 $to[] = $headers['Cc'] ?? NULL;
e7292422
TO
296 }
297 if (!empty($headers['Bcc'])) {
9c1bc317 298 $to[] = $headers['Bcc'] ?? NULL;
d39f2583 299 unset($headers['Bcc']);
e7292422 300 }
6a488035 301 }
8125eb18 302
ea2eebc3 303 if (is_object($mailer)) {
c9d8809c 304 try {
305 $result = $mailer->send($to, $headers, $message);
306 }
307 catch (Exception $e) {
867052dc
MW
308 \Civi::log()->error('Mailing error: ' . $e->getMessage());
309 CRM_Core_Session::setStatus(ts('Unable to send email. Please report this message to the site administrator'), ts('Mailing Error'), 'error');
c9d8809c 310 return FALSE;
311 }
6a488035
TO
312 if (is_a($result, 'PEAR_Error')) {
313 $message = self::errorMessage($mailer, $result);
314 // append error message in case multiple calls are being made to
315 // this method in the course of sending a batch of messages.
867052dc
MW
316 \Civi::log()->error('Mailing error: ' . $message);
317 CRM_Core_Session::setStatus(ts('Unable to send email. Please report this message to the site administrator'), ts('Mailing Error'), 'error');
6a488035
TO
318 return FALSE;
319 }
320 // CRM-10699
321 CRM_Utils_Hook::postEmailSend($params);
322 return TRUE;
323 }
324 return FALSE;
325 }
326
5bc392e6
EM
327 /**
328 * @param $mailer
329 * @param $result
330 *
331 * @return string
332 */
00be9182 333 public static function errorMessage($mailer, $result) {
be2fb01f 334 $message = '<p>' . ts('An error occurred when CiviCRM attempted to send an email (via %1). If you received this error after submitting on online contribution or event registration - the transaction was completed, but we were unable to send the email receipt.', [
6714d8d2
SL
335 1 => 'SMTP',
336 ]) . '</p>' . '<p>' . ts('The mail library returned the following error message:') . '<br /><span class="font-red"><strong>' . $result->getMessage() . '</strong></span></p>' . '<p>' . ts('This is probably related to a problem in your Outbound Email Settings (Administer CiviCRM &raquo; System Settings &raquo; Outbound Email), OR the FROM email address specifically configured for your contribution page or event. Possible causes are:') . '</p>';
6a488035
TO
337
338 if (is_a($mailer, 'Mail_smtp')) {
339 $message .= '<ul>' . '<li>' . ts('Your SMTP Username or Password are incorrect.') . '</li>' . '<li>' . ts('Your SMTP Server (machine) name is incorrect.') . '</li>' . '<li>' . ts('You need to use a Port other than the default port 25 in your environment.') . '</li>' . '<li>' . ts('Your SMTP server is just not responding right now (it is down for some reason).') . '</li>';
340 }
341 else {
342 $message .= '<ul>' . '<li>' . ts('Your Sendmail path is incorrect.') . '</li>' . '<li>' . ts('Your Sendmail argument is incorrect.') . '</li>';
343 }
344
be2fb01f 345 $message .= '<li>' . ts('The FROM Email Address configured for this feature may not be a valid sender based on your email service provider rules.') . '</li>' . '</ul>' . '<p>' . ts('Check <a href="%1">this page</a> for more information.', [
6714d8d2
SL
346 1 => CRM_Utils_System::docURL2('user/advanced-configuration/email-system-configuration', TRUE),
347 ]) . '</p>';
6a488035
TO
348
349 return $message;
350 }
351
5bc392e6
EM
352 /**
353 * @param $to
354 * @param $headers
355 * @param $message
dee6e582 356 * @deprecated
5bc392e6 357 */
00be9182 358 public static function logger(&$to, &$headers, &$message) {
dee6e582 359 CRM_Utils_Mail_Logger::log($to, $headers, $message);
6a488035
TO
360 }
361
362 /**
363 * Get the email address itself from a formatted full name + address string
364 *
365 * Ugly but working.
366 *
77855840
TO
367 * @param string $header
368 * The full name + email address string.
6a488035 369 *
a6c01b45
CW
370 * @return string
371 * the plucked email address
6a488035 372 */
00be9182 373 public static function pluckEmailFromHeader($header) {
6a488035
TO
374 preg_match('/<([^<]*)>$/', $header, $matches);
375
376 if (isset($matches[1])) {
377 return $matches[1];
378 }
379 return NULL;
380 }
381
382 /**
fe482240 383 * Get the Active outBound email.
6a488035 384 *
ae5ffbb7
TO
385 * @return bool
386 * TRUE if valid outBound email configuration found, false otherwise.
6a488035 387 */
00be9182 388 public static function validOutBoundMail() {
aaffa79f 389 $mailingInfo = Civi::settings()->get('mailing_backend');
6a488035
TO
390 if ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_MAIL) {
391 return TRUE;
392 }
393 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_SMTP) {
394 if (!isset($mailingInfo['smtpServer']) || $mailingInfo['smtpServer'] == '' ||
395 $mailingInfo['smtpServer'] == 'YOUR SMTP SERVER' ||
396 ($mailingInfo['smtpAuth'] && ($mailingInfo['smtpUsername'] == '' || $mailingInfo['smtpPassword'] == ''))
397 ) {
398 return FALSE;
399 }
400 return TRUE;
401 }
402 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_SENDMAIL) {
403 if (!$mailingInfo['sendmail_path'] || !$mailingInfo['sendmail_args']) {
404 return FALSE;
405 }
406 return TRUE;
407 }
408 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_REDIRECT_TO_DB) {
409 return TRUE;
410 }
411 return FALSE;
412 }
413
5bc392e6
EM
414 /**
415 * @param $message
100fef9d 416 * @param array $params
5bc392e6
EM
417 *
418 * @return mixed
419 */
ca807bbe 420 public static function setMimeParams($message, $params = NULL) {
6a488035
TO
421 static $mimeParams = NULL;
422 if (!$params) {
423 if (!$mimeParams) {
be2fb01f 424 $mimeParams = [
6a488035
TO
425 'text_encoding' => '8bit',
426 'html_encoding' => '8bit',
427 'head_charset' => 'utf-8',
428 'text_charset' => 'utf-8',
429 'html_charset' => 'utf-8',
be2fb01f 430 ];
6a488035
TO
431 }
432 $params = $mimeParams;
433 }
434 return $message->get($params);
435 }
436
5bc392e6 437 /**
100fef9d 438 * @param string $name
5bc392e6
EM
439 * @param $email
440 * @param bool $useQuote
441 *
442 * @return null|string
443 */
00be9182 444 public static function formatRFC822Email($name, $email, $useQuote = FALSE) {
6a488035
TO
445 $result = NULL;
446
447 $name = trim($name);
448
449 // strip out double quotes if present at the beginning AND end
450 if (substr($name, 0, 1) == '"' &&
451 substr($name, -1, 1) == '"'
452 ) {
453 $name = substr($name, 1, -1);
454 }
455
456 if (!empty($name)) {
457 // escape the special characters
be2fb01f
CW
458 $name = str_replace(['<', '"', '>'],
459 ['\<', '\"', '\>'],
6a488035
TO
460 $name
461 );
462 if (strpos($name, ',') !== FALSE ||
463 $useQuote
464 ) {
465 // quote the string if it has a comma
466 $name = '"' . $name . '"';
467 }
468
469 $result = "$name ";
470 }
471
472 $result .= "<{$email}>";
473 return $result;
474 }
475
476 /**
477 * Takes a string and checks to see if it needs to be escaped / double quoted
478 * and if so does the needful and return the formatted name
479 *
480 * This code has been copied and adapted from ezc/Mail/src/tools.php
50bfb460
SB
481 *
482 * @param string $name
483 *
484 * @return string
6a488035 485 */
00be9182 486 public static function formatRFC2822Name($name) {
6a488035
TO
487 $name = trim($name);
488 if (!empty($name)) {
489 // remove the quotes around the name part if they are already there
490 if (substr($name, 0, 1) == '"' && substr($name, -1) == '"') {
491 $name = substr($name, 1, -1);
492 }
493
494 // add slashes to " and \ and surround the name part with quotes
495 if (strpbrk($name, ",@<>:;'\"") !== FALSE) {
496 $name = '"' . addcslashes($name, '\\"') . '"';
497 }
498 }
499
500 return $name;
501 }
383c047b
DG
502
503 /**
383c047b
DG
504 * @param string $fileName
505 * @param string $html
506 * @param string $format
507 *
a6c01b45 508 * @return array
383c047b 509 */
00be9182 510 public static function appendPDF($fileName, $html, $format = NULL) {
383c047b
DG
511 $pdf_filename = CRM_Core_Config::singleton()->templateCompileDir . CRM_Utils_File::makeFileName($fileName);
512
50bfb460
SB
513 // FIXME : CRM-7894
514 // xmlns attribute is required in XHTML but it is invalid in HTML,
515 // Also the namespace "xmlns=http://www.w3.org/1999/xhtml" is default,
516 // and will be added to the <html> tag even if you do not include it.
383c047b
DG
517 $html = preg_replace('/(<html)(.+?xmlns=["\'].[^\s]+["\'])(.+)?(>)/', '\1\3\4', $html);
518
519 file_put_contents($pdf_filename, CRM_Utils_PDF_Utils::html2pdf($html,
353ffa53
TO
520 $fileName,
521 TRUE,
522 $format)
383c047b 523 );
be2fb01f 524 return [
383c047b
DG
525 'fullPath' => $pdf_filename,
526 'mime_type' => 'application/pdf',
527 'cleanName' => $fileName,
be2fb01f 528 ];
383c047b 529 }
96025800 530
2a7e1ddc
TS
531 /**
532 * Format an email string from email fields.
533 *
534 * @param array $fields
535 * The email fields.
536 * @return string
537 * The formatted email string.
538 */
539 public static function format($fields) {
540 $formattedEmail = '';
541 if (!empty($fields['email'])) {
542 $formattedEmail = $fields['email'];
543 }
544
be2fb01f 545 $formattedSuffix = [];
2a7e1ddc
TS
546 if (!empty($fields['is_bulkmail'])) {
547 $formattedSuffix[] = '(' . ts('Bulk') . ')';
548 }
549 if (!empty($fields['on_hold'])) {
550 if ($fields['on_hold'] == 2) {
551 $formattedSuffix[] = '(' . ts('On Hold - Opt Out') . ')';
552 }
553 else {
554 $formattedSuffix[] = '(' . ts('On Hold') . ')';
555 }
556 }
557 if (!empty($fields['signature_html']) || !empty($fields['signature_text'])) {
558 $formattedSuffix[] = '(' . ts('Signature') . ')';
559 }
560
561 // Add suffixes on a new line, if there is any.
562 if (!empty($formattedSuffix)) {
563 $formattedEmail .= "\n" . implode(' ', $formattedSuffix);
564 }
565
566 return $formattedEmail;
567 }
568
a7180974
JG
569 /**
570 * When passed a value, returns the value if it's non-numeric.
571 * If it's numeric, look up the display name and email of the corresponding
572 * contact ID in RFC822 format.
573 *
4335f229 574 * @param string $from
b21f0248 575 * civicrm_email.id or formatted "From address", eg. 12 or "Fred Bloggs" <fred@example.org>
a7180974
JG
576 * @return string
577 * The RFC822-formatted email header (display name + address)
578 */
4335f229
JG
579 public static function formatFromAddress($from) {
580 if (is_numeric($from)) {
a7180974 581 $result = civicrm_api3('Email', 'get', [
4335f229 582 'id' => $from,
a7180974
JG
583 'return' => ['contact_id.display_name', 'email'],
584 'sequential' => 1,
585 ])['values'][0];
4335f229 586 $from = '"' . $result['contact_id.display_name'] . '" <' . $result['email'] . '>';
a7180974 587 }
4335f229 588 return $from;
a7180974
JG
589 }
590
6a488035 591}