Set version to 5.20.beta1
[civicrm-core.git] / CRM / Utils / Mail.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33class CRM_Utils_Mail {
34
247eb841
TO
35 /**
36 * Create a new mailer to send any mail from the application.
37 *
38 * Note: The mailer is opened in persistent mode.
39 *
40 * Note: You probably don't want to call this directly. Get a reference
41 * to the mailer through the container.
42 *
43 * @return Mail
44 */
45 public static function createMailer() {
aaffa79f 46 $mailingInfo = Civi::settings()->get('mailing_backend');
247eb841
TO
47
48 if ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_REDIRECT_TO_DB ||
49 (defined('CIVICRM_MAILER_SPOOL') && CIVICRM_MAILER_SPOOL)
50 ) {
be2fb01f 51 $mailer = self::_createMailer('CRM_Mailing_BAO_Spool', []);
247eb841
TO
52 }
53 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_SMTP) {
54 if ($mailingInfo['smtpServer'] == '' || !$mailingInfo['smtpServer']) {
be2fb01f
CW
55 CRM_Core_Error::debug_log_message(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')]));
56 CRM_Core_Error::fatal(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
57 }
58
59 $params['host'] = $mailingInfo['smtpServer'] ? $mailingInfo['smtpServer'] : 'localhost';
60 $params['port'] = $mailingInfo['smtpPort'] ? $mailingInfo['smtpPort'] : 25;
61
62 if ($mailingInfo['smtpAuth']) {
63 $params['username'] = $mailingInfo['smtpUsername'];
64 $params['password'] = CRM_Utils_Crypt::decrypt($mailingInfo['smtpPassword']);
65 $params['auth'] = TRUE;
66 }
67 else {
68 $params['auth'] = FALSE;
69 }
70
ef84aa00 71 /*
72 * Set the localhost value, CRM-3153
73 * Use the host name of the web server, falling back to the base URL
74 * (eg when using the PHP CLI), and then falling back to localhost.
75 */
76 $params['localhost'] = CRM_Utils_Array::value(
77 'SERVER_NAME',
78 $_SERVER,
79 CRM_Utils_Array::value(
80 'host',
81 parse_url(CIVICRM_UF_BASEURL),
82 'localhost'
83 )
84 );
247eb841
TO
85
86 // also set the timeout value, lets set it to 30 seconds
87 // CRM-7510
88 $params['timeout'] = 30;
89
90 // CRM-9349
91 $params['persist'] = TRUE;
92
93 $mailer = self::_createMailer('smtp', $params);
94 }
95 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_SENDMAIL) {
96 if ($mailingInfo['sendmail_path'] == '' ||
97 !$mailingInfo['sendmail_path']
98 ) {
be2fb01f
CW
99 CRM_Core_Error::debug_log_message(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')]));
100 CRM_Core_Error::fatal(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
101 }
102 $params['sendmail_path'] = $mailingInfo['sendmail_path'];
103 $params['sendmail_args'] = $mailingInfo['sendmail_args'];
104
105 $mailer = self::_createMailer('sendmail', $params);
106 }
107 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_MAIL) {
be2fb01f 108 $mailer = self::_createMailer('mail', []);
247eb841
TO
109 }
110 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_MOCK) {
be2fb01f 111 $mailer = self::_createMailer('mock', []);
247eb841
TO
112 }
113 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_DISABLED) {
be2fb01f
CW
114 CRM_Core_Error::debug_log_message(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')]));
115 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
116 }
117 else {
be2fb01f 118 CRM_Core_Error::debug_log_message(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 119 CRM_Core_Error::debug_var('mailing_info', $mailingInfo);
be2fb01f 120 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
121 }
122 return $mailer;
123 }
124
125 /**
126 * Create a new instance of a PEAR Mail driver.
127 *
128 * @param string $driver
129 * 'CRM_Mailing_BAO_Spool' or a name suitable for Mail::factory().
130 * @param array $params
131 * @return object
132 * More specifically, a class which implements the "send()" function
133 */
134 public static function _createMailer($driver, $params) {
135 if ($driver == 'CRM_Mailing_BAO_Spool') {
136 $mailer = new CRM_Mailing_BAO_Spool($params);
137 }
138 else {
139 $mailer = Mail::factory($driver, $params);
140 }
f2b63bd3 141 CRM_Utils_Hook::alterMailer($mailer, $driver, $params);
247eb841
TO
142 return $mailer;
143 }
144
6a488035
TO
145 /**
146 * Wrapper function to send mail in CiviCRM. Hooks are called from this function. The input parameter
147 * is an associateive array which holds the values of field needed to send an email. These are:
148 *
149 * from : complete from envelope
150 * toName : name of person to send email
151 * toEmail : email address to send to
152 * cc : email addresses to cc
153 * bcc : email addresses to bcc
154 * subject : subject of the email
155 * text : text of the message
156 * html : html version of the message
157 * replyTo : reply-to header in the email
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 */
00be9182 169 public static function send(&$params) {
e633aba2 170 $defaultReturnPath = CRM_Core_BAO_MailSettings::defaultReturnPath();
6a488035 171 $includeMessageId = CRM_Core_BAO_MailSettings::includeMessageId();
353ffa53
TO
172 $emailDomain = CRM_Core_BAO_MailSettings::defaultDomain();
173 $from = CRM_Utils_Array::value('from', $params);
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
186 $textMessage = CRM_Utils_Array::value('text', $params);
187 $htmlMessage = CRM_Utils_Array::value('html', $params);
188 $attachments = CRM_Utils_Array::value('attachments', $params);
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) {
209 $headers[$optionalHeader] = CRM_Utils_Array::value(strtolower($optionalHeader), $params);
210 if (empty($headers[$optionalHeader])) {
211 unset($headers[$optionalHeader]);
212 }
213 }
214
6a488035
TO
215 $headers['Subject'] = CRM_Utils_Array::value('subject', $params);
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) {
229 $headers['Message-ID'] = '<' . uniqid('civicrm_', TRUE) . "@$emailDomain>";
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)) {
263 foreach ($attachments as $fileID => $attach) {
264 $msg->addAttachment(
265 $attach['fullPath'],
266 $attach['mime_type'],
267 $attach['cleanName']
268 );
269 }
270 }
271
272 $message = self::setMimeParams($msg);
b2c0dbe4 273 $headers = $msg->headers($headers);
6a488035 274
be2fb01f 275 $to = [$params['toEmail']];
e7292422 276 $result = NULL;
048222df 277 $mailer = \Civi::service('pear_mail');
cbcec379 278
8125eb18
NG
279 // CRM-3795, CRM-7355, CRM-7557, CRM-9058, CRM-9887, CRM-12883, CRM-19173 and others ...
280 // The PEAR library requires different parameters based on the mailer used:
281 // * Mail_mail requires the Cc/Bcc recipients listed ONLY in the $headers variable
282 // * All other mailers require that all be recipients be listed in the $to array AND that
283 // the Bcc must not be present in $header as otherwise it will be shown to all recipients
284 // ref: https://pear.php.net/bugs/bug.php?id=8047, full thread and answer [2011-04-19 20:48 UTC]
cbcec379 285 if (get_class($mailer) != "Mail_mail") {
ea2eebc3
NG
286 // get emails from headers, since these are
287 // combination of name and email addresses.
e7292422 288 if (!empty($headers['Cc'])) {
481a74f4 289 $to[] = CRM_Utils_Array::value('Cc', $headers);
e7292422
TO
290 }
291 if (!empty($headers['Bcc'])) {
481a74f4 292 $to[] = CRM_Utils_Array::value('Bcc', $headers);
d39f2583 293 unset($headers['Bcc']);
e7292422 294 }
6a488035 295 }
8125eb18 296
ea2eebc3 297 if (is_object($mailer)) {
6a4257d4 298 $errorScope = CRM_Core_TemporaryErrorScope::ignoreException();
6a488035 299 $result = $mailer->send($to, $headers, $message);
6a488035
TO
300 if (is_a($result, 'PEAR_Error')) {
301 $message = self::errorMessage($mailer, $result);
302 // append error message in case multiple calls are being made to
303 // this method in the course of sending a batch of messages.
361fb6c0 304 CRM_Core_Session::setStatus($message, ts('Mailing Error'), 'error');
6a488035
TO
305 return FALSE;
306 }
307 // CRM-10699
308 CRM_Utils_Hook::postEmailSend($params);
309 return TRUE;
310 }
311 return FALSE;
312 }
313
5bc392e6
EM
314 /**
315 * @param $mailer
316 * @param $result
317 *
318 * @return string
319 */
00be9182 320 public static function errorMessage($mailer, $result) {
be2fb01f 321 $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
322 1 => 'SMTP',
323 ]) . '</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
324
325 if (is_a($mailer, 'Mail_smtp')) {
326 $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>';
327 }
328 else {
329 $message .= '<ul>' . '<li>' . ts('Your Sendmail path is incorrect.') . '</li>' . '<li>' . ts('Your Sendmail argument is incorrect.') . '</li>';
330 }
331
be2fb01f 332 $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
333 1 => CRM_Utils_System::docURL2('user/advanced-configuration/email-system-configuration', TRUE),
334 ]) . '</p>';
6a488035
TO
335
336 return $message;
337 }
338
5bc392e6
EM
339 /**
340 * @param $to
341 * @param $headers
342 * @param $message
343 */
00be9182 344 public static function logger(&$to, &$headers, &$message) {
6a488035
TO
345 if (is_array($to)) {
346 $toString = implode(', ', $to);
347 $fileName = $to[0];
348 }
349 else {
350 $toString = $fileName = $to;
351 }
352 $content = "To: " . $toString . "\n";
353 foreach ($headers as $key => $val) {
354 $content .= "$key: $val\n";
355 }
356 $content .= "\n" . $message . "\n";
357
358 if (is_numeric(CIVICRM_MAIL_LOG)) {
359 $config = CRM_Core_Config::singleton();
360 // create the directory if not there
361 $dirName = $config->configAndLogDir . 'mail' . DIRECTORY_SEPARATOR;
362 CRM_Utils_File::createDir($dirName);
363 $fileName = md5(uniqid(CRM_Utils_String::munge($fileName))) . '.txt';
364 file_put_contents($dirName . $fileName,
365 $content
366 );
367 }
368 else {
369 file_put_contents(CIVICRM_MAIL_LOG, $content, FILE_APPEND);
370 }
371 }
372
373 /**
374 * Get the email address itself from a formatted full name + address string
375 *
376 * Ugly but working.
377 *
77855840
TO
378 * @param string $header
379 * The full name + email address string.
6a488035 380 *
a6c01b45
CW
381 * @return string
382 * the plucked email address
6a488035 383 */
00be9182 384 public static function pluckEmailFromHeader($header) {
6a488035
TO
385 preg_match('/<([^<]*)>$/', $header, $matches);
386
387 if (isset($matches[1])) {
388 return $matches[1];
389 }
390 return NULL;
391 }
392
393 /**
fe482240 394 * Get the Active outBound email.
6a488035 395 *
ae5ffbb7
TO
396 * @return bool
397 * TRUE if valid outBound email configuration found, false otherwise.
6a488035 398 */
00be9182 399 public static function validOutBoundMail() {
aaffa79f 400 $mailingInfo = Civi::settings()->get('mailing_backend');
6a488035
TO
401 if ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_MAIL) {
402 return TRUE;
403 }
404 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_SMTP) {
405 if (!isset($mailingInfo['smtpServer']) || $mailingInfo['smtpServer'] == '' ||
406 $mailingInfo['smtpServer'] == 'YOUR SMTP SERVER' ||
407 ($mailingInfo['smtpAuth'] && ($mailingInfo['smtpUsername'] == '' || $mailingInfo['smtpPassword'] == ''))
408 ) {
409 return FALSE;
410 }
411 return TRUE;
412 }
413 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_SENDMAIL) {
414 if (!$mailingInfo['sendmail_path'] || !$mailingInfo['sendmail_args']) {
415 return FALSE;
416 }
417 return TRUE;
418 }
419 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_REDIRECT_TO_DB) {
420 return TRUE;
421 }
422 return FALSE;
423 }
424
5bc392e6
EM
425 /**
426 * @param $message
100fef9d 427 * @param array $params
5bc392e6
EM
428 *
429 * @return mixed
430 */
ca807bbe 431 public static function setMimeParams($message, $params = NULL) {
6a488035
TO
432 static $mimeParams = NULL;
433 if (!$params) {
434 if (!$mimeParams) {
be2fb01f 435 $mimeParams = [
6a488035
TO
436 'text_encoding' => '8bit',
437 'html_encoding' => '8bit',
438 'head_charset' => 'utf-8',
439 'text_charset' => 'utf-8',
440 'html_charset' => 'utf-8',
be2fb01f 441 ];
6a488035
TO
442 }
443 $params = $mimeParams;
444 }
445 return $message->get($params);
446 }
447
5bc392e6 448 /**
100fef9d 449 * @param string $name
5bc392e6
EM
450 * @param $email
451 * @param bool $useQuote
452 *
453 * @return null|string
454 */
00be9182 455 public static function formatRFC822Email($name, $email, $useQuote = FALSE) {
6a488035
TO
456 $result = NULL;
457
458 $name = trim($name);
459
460 // strip out double quotes if present at the beginning AND end
461 if (substr($name, 0, 1) == '"' &&
462 substr($name, -1, 1) == '"'
463 ) {
464 $name = substr($name, 1, -1);
465 }
466
467 if (!empty($name)) {
468 // escape the special characters
be2fb01f
CW
469 $name = str_replace(['<', '"', '>'],
470 ['\<', '\"', '\>'],
6a488035
TO
471 $name
472 );
473 if (strpos($name, ',') !== FALSE ||
474 $useQuote
475 ) {
476 // quote the string if it has a comma
477 $name = '"' . $name . '"';
478 }
479
480 $result = "$name ";
481 }
482
483 $result .= "<{$email}>";
484 return $result;
485 }
486
487 /**
488 * Takes a string and checks to see if it needs to be escaped / double quoted
489 * and if so does the needful and return the formatted name
490 *
491 * This code has been copied and adapted from ezc/Mail/src/tools.php
50bfb460
SB
492 *
493 * @param string $name
494 *
495 * @return string
6a488035 496 */
00be9182 497 public static function formatRFC2822Name($name) {
6a488035
TO
498 $name = trim($name);
499 if (!empty($name)) {
500 // remove the quotes around the name part if they are already there
501 if (substr($name, 0, 1) == '"' && substr($name, -1) == '"') {
502 $name = substr($name, 1, -1);
503 }
504
505 // add slashes to " and \ and surround the name part with quotes
506 if (strpbrk($name, ",@<>:;'\"") !== FALSE) {
507 $name = '"' . addcslashes($name, '\\"') . '"';
508 }
509 }
510
511 return $name;
512 }
383c047b
DG
513
514 /**
383c047b
DG
515 * @param string $fileName
516 * @param string $html
517 * @param string $format
518 *
a6c01b45 519 * @return array
383c047b 520 */
00be9182 521 public static function appendPDF($fileName, $html, $format = NULL) {
383c047b
DG
522 $pdf_filename = CRM_Core_Config::singleton()->templateCompileDir . CRM_Utils_File::makeFileName($fileName);
523
50bfb460
SB
524 // FIXME : CRM-7894
525 // xmlns attribute is required in XHTML but it is invalid in HTML,
526 // Also the namespace "xmlns=http://www.w3.org/1999/xhtml" is default,
527 // and will be added to the <html> tag even if you do not include it.
383c047b
DG
528 $html = preg_replace('/(<html)(.+?xmlns=["\'].[^\s]+["\'])(.+)?(>)/', '\1\3\4', $html);
529
530 file_put_contents($pdf_filename, CRM_Utils_PDF_Utils::html2pdf($html,
353ffa53
TO
531 $fileName,
532 TRUE,
533 $format)
383c047b 534 );
be2fb01f 535 return [
383c047b
DG
536 'fullPath' => $pdf_filename,
537 'mime_type' => 'application/pdf',
538 'cleanName' => $fileName,
be2fb01f 539 ];
383c047b 540 }
96025800 541
2a7e1ddc
TS
542 /**
543 * Format an email string from email fields.
544 *
545 * @param array $fields
546 * The email fields.
547 * @return string
548 * The formatted email string.
549 */
550 public static function format($fields) {
551 $formattedEmail = '';
552 if (!empty($fields['email'])) {
553 $formattedEmail = $fields['email'];
554 }
555
be2fb01f 556 $formattedSuffix = [];
2a7e1ddc
TS
557 if (!empty($fields['is_bulkmail'])) {
558 $formattedSuffix[] = '(' . ts('Bulk') . ')';
559 }
560 if (!empty($fields['on_hold'])) {
561 if ($fields['on_hold'] == 2) {
562 $formattedSuffix[] = '(' . ts('On Hold - Opt Out') . ')';
563 }
564 else {
565 $formattedSuffix[] = '(' . ts('On Hold') . ')';
566 }
567 }
568 if (!empty($fields['signature_html']) || !empty($fields['signature_text'])) {
569 $formattedSuffix[] = '(' . ts('Signature') . ')';
570 }
571
572 // Add suffixes on a new line, if there is any.
573 if (!empty($formattedSuffix)) {
574 $formattedEmail .= "\n" . implode(' ', $formattedSuffix);
575 }
576
577 return $formattedEmail;
578 }
579
a7180974
JG
580 /**
581 * When passed a value, returns the value if it's non-numeric.
582 * If it's numeric, look up the display name and email of the corresponding
583 * contact ID in RFC822 format.
584 *
4335f229
JG
585 * @param string $from
586 * contact ID or formatted "From address", eg. 12 or "Fred Bloggs" <fred@example.org>
a7180974
JG
587 * @return string
588 * The RFC822-formatted email header (display name + address)
589 */
4335f229
JG
590 public static function formatFromAddress($from) {
591 if (is_numeric($from)) {
a7180974 592 $result = civicrm_api3('Email', 'get', [
4335f229 593 'id' => $from,
a7180974
JG
594 'return' => ['contact_id.display_name', 'email'],
595 'sequential' => 1,
596 ])['values'][0];
4335f229 597 $from = '"' . $result['contact_id.display_name'] . '" <' . $result['email'] . '>';
a7180974 598 }
4335f229 599 return $from;
a7180974
JG
600 }
601
6a488035 602}