dolibarr 21.0.0-alpha
CMailFile.class.php
Go to the documentation of this file.
1<?php
34use OAuth\Common\Storage\DoliStorage;
35use OAuth\Common\Consumer\Credentials;
36
37
44{
45 public $sendcontext;
46 public $sendmode;
47 public $sendsetup;
48
52 public $subject;
53 public $addr_from; // From: Label and EMail of sender (must include '<>'). For example '<myemail@example.com>' or 'John Doe <myemail@example.com>' or '<myemail+trackingid@example.com>'). Note that with gmail smtps, value here is forced by google to account (but not the reply-to).
54 // Sender: Who send the email ("Sender" has sent emails on behalf of "From").
55 // Use it when the "From" is an email of a domain that is a SPF protected domain, and the sending smtp server is not this domain. In such case, add Sender field with an email of the protected domain.
56 // Return-Path: Email where to send bounds.
57 public $reply_to; // Reply-To: Email where to send replies from mailer software (mailer use From if reply-to not defined, Gmail use gmail account if reply-to not defined)
58 public $errors_to; // Errors-To: Email where to send errors.
59 public $addr_to;
60 public $addr_cc;
61 public $addr_bcc;
62 public $trackid;
63
64 public $mixed_boundary;
65 public $related_boundary;
66 public $alternative_boundary;
67 public $deliveryreceipt;
68
69 public $atleastonefile;
70
71 public $msg;
72 public $eol;
73 public $eol2;
74
78 public $error = '';
79
83 public $errors = array();
84
85
89 public $smtps;
93 public $mailer;
94
98 public $transport;
102 public $logger;
103
107 public $css;
109 public $styleCSS;
111 public $bodyCSS;
112
116 public $msgid;
117
121 public $in_reply_to;
122
126 public $references;
127
128 public $headers;
129
130 public $message;
131
135 public $filename_list = array();
139 public $mimetype_list = array();
143 public $mimefilename_list = array();
147 public $cid_list = array();
148
149 // Image
150 public $html;
151 public $msgishtml;
152 public $image_boundary;
153 public $atleastoneimage = 0; // at least one image file with file=xxx.ext into content (TODO Debug this. How can this case be tested. Remove if not used).
154 public $html_images = array();
155 public $images_encoded = array();
156 public $image_types = array(
157 'gif' => 'image/gif',
158 'jpg' => 'image/jpeg',
159 'jpeg' => 'image/jpeg',
160 'jpe' => 'image/jpeg',
161 'bmp' => 'image/bmp',
162 'png' => 'image/png',
163 'tif' => 'image/tiff',
164 'tiff' => 'image/tiff',
165 );
166
167
192 public function __construct($subject, $to, $from, $msg, $filename_list = array(), $mimetype_list = array(), $mimefilename_list = array(), $addr_cc = "", $addr_bcc = "", $deliveryreceipt = 0, $msgishtml = 0, $errors_to = '', $css = '', $trackid = '', $moreinheader = '', $sendcontext = 'standard', $replyto = '', $upload_dir_tmp = '', $in_reply_to = '', $references = '')
193 {
194 global $conf, $dolibarr_main_data_root, $user;
195
196 dol_syslog("CMailFile::CMailfile: charset=".$conf->file->character_set_client." from=$from, to=$to, addr_cc=$addr_cc, addr_bcc=$addr_bcc, errors_to=$errors_to, replyto=$replyto trackid=$trackid sendcontext=$sendcontext", LOG_DEBUG);
197 dol_syslog("CMailFile::CMailfile: subject=".$subject.", deliveryreceipt=".$deliveryreceipt.", msgishtml=".$msgishtml, LOG_DEBUG);
198
199
200 // Clean values of $mimefilename_list
201 if (is_array($mimefilename_list)) {
202 foreach ($mimefilename_list as $key => $val) {
203 $mimefilename_list[$key] = dol_string_unaccent($mimefilename_list[$key]);
204 }
205 }
206
207 $cid_list = array();
208
209 $this->sendcontext = $sendcontext;
210
211 // Define this->sendmode ('mail', 'smtps', 'swiftmailer', ...) according to $sendcontext ('standard', 'emailing', 'ticket', 'password')
212 $this->sendmode = '';
213 if (!empty($this->sendcontext)) {
214 $smtpContextKey = strtoupper($this->sendcontext);
215 $smtpContextSendMode = getDolGlobalString('MAIN_MAIL_SENDMODE_'.$smtpContextKey);
216 if (!empty($smtpContextSendMode) && $smtpContextSendMode != 'default') {
217 $this->sendmode = $smtpContextSendMode;
218 }
219 }
220 if (empty($this->sendmode)) {
221 $this->sendmode = getDolGlobalString('MAIN_MAIL_SENDMODE', 'mail');
222 }
223
224 // Add a Feedback-ID. Must be used for stats on spam report only.
225 if ($trackid) {
226 //Examples:
227 // LinkedIn – Feedback-ID: accept_invite_04:linkedin
228 // Twitter – Feedback-ID: 0040162518f58f41d1f0:15491f3b2ee48656f8e7fb2fac:none:twitterESP
229 // Amazon.com : Feedback-ID: 1.eu-west-1.kjoQSiqb8G+7lWWiDVsxjM2m0ynYd4I6yEFlfoox6aY=:AmazonSES
230 $moreinheader .= "Feedback-ID: ".$trackid.':'.dol_getprefix('email').":dolib\r\n";
231 }
232
233 // We define end of line (RFC 821).
234 $this->eol = "\r\n";
235 // We define end of line for header fields (RFC 822bis section 2.3 says header must contains \r\n).
236 $this->eol2 = "\r\n";
237 if (getDolGlobalString('MAIN_FIX_FOR_BUGGED_MTA')) {
238 $this->eol = "\n";
239 $this->eol2 = "\n";
240 $moreinheader = str_replace("\r\n", "\n", $moreinheader);
241 }
242
243 // On defini mixed_boundary
244 $this->mixed_boundary = "multipart_x.".time().".x_boundary";
245
246 // On defini related_boundary
247 $this->related_boundary = 'mul_'.dol_hash(uniqid("dolibarr2"), 3); // Force md5 hash (does not contain special chars)
248
249 // On defini alternative_boundary
250 $this->alternative_boundary = 'mul_'.dol_hash(uniqid("dolibarr3"), 3); // Force md5 hash (does not contain special chars)
251
252 if (empty($subject)) {
253 dol_syslog("CMailFile::CMailfile: Try to send an email with empty subject");
254 $this->error = 'ErrorSubjectIsRequired';
255 return;
256 }
257 if (empty($msg)) {
258 dol_syslog("CMailFile::CMailfile: Try to send an email with empty body");
259 $msg = '.'; // Avoid empty message (with empty message content, you will see a multipart structure)
260 }
261
262 // Detect if message is HTML (use fast method)
263 if ($msgishtml == -1) {
264 $this->msgishtml = 0;
265 if (dol_textishtml($msg)) {
266 $this->msgishtml = 1;
267 }
268 } else {
269 $this->msgishtml = $msgishtml;
270 }
271
272 global $dolibarr_main_url_root;
273
274 // Define $urlwithroot
275 $urlwithouturlroot = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim($dolibarr_main_url_root));
276 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
277 //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
278
279 // Replace relative /viewimage to absolute path
280 $msg = preg_replace('/src="'.preg_quote(DOL_URL_ROOT, '/').'\/viewimage\.php/ims', 'src="'.$urlwithroot.'/viewimage.php', $msg, -1);
281
282 if (getDolGlobalString('MAIN_MAIL_FORCE_CONTENT_TYPE_TO_HTML')) {
283 $this->msgishtml = 1; // To force to send everything with content type html.
284 }
285 dol_syslog("CMailFile::CMailfile: msgishtml=".$this->msgishtml);
286
287 // Detect images
288 if ($this->msgishtml) {
289 $this->html = $msg;
290
291 $findimg = 0;
292 if (getDolGlobalString('MAIN_MAIL_ADD_INLINE_IMAGES_IF_IN_MEDIAS')) { // Off by default
293 // Search into the body for <img tags of links in medias files to replace them with an embedded file
294 // Note because media links are public, this should be useless, except avoid blocking images with email browser.
295 // This converts an embed file with src="/viewimage.php?modulepart... into a cid link
296 // TODO Exclude viewimage used for the read tracker ?
297 $findimg = $this->findHtmlImages($dolibarr_main_data_root.'/medias');
298 if ($findimg < 0) {
299 dol_syslog("CMailFile::CMailfile: Error on findHtmlImages");
300 $this->error = 'ErrorInAddAttachmentsImageBaseOnMedia';
301 return;
302 }
303 }
304
305 if (getDolGlobalString('MAIN_MAIL_ADD_INLINE_IMAGES_IF_DATA')) {
306 // Search into the body for <img src="data:image/ext;base64,..." to replace them with an embedded file
307 // This convert an embedded file with src="data:image... into a cid link + attached file
308 $resultImageData = $this->findHtmlImagesIsSrcData($upload_dir_tmp);
309 if ($resultImageData < 0) {
310 dol_syslog("CMailFile::CMailfile: Error on findHtmlImagesInSrcData code=".$resultImageData." upload_dir_tmp=".$upload_dir_tmp);
311 $this->error = 'ErrorInAddAttachmentsImageBaseIsSrcData';
312 return;
313 }
314 $findimg += $resultImageData;
315 }
316
317 // Set atleastoneimage if there is at least one embedded file (into ->html_images)
318 if ($findimg > 0) {
319 foreach ($this->html_images as $i => $val) {
320 if ($this->html_images[$i]) {
321 $this->atleastoneimage = 1;
322 if ($this->html_images[$i]['type'] == 'cidfromdata') {
323 if (!in_array($this->html_images[$i]['fullpath'], $filename_list)) {
324 // If this file path is not already into the $filename_list, we append it at end of array
325 $posindice = count($filename_list);
326 $filename_list[$posindice] = $this->html_images[$i]['fullpath'];
327 $mimetype_list[$posindice] = $this->html_images[$i]['content_type'];
328 $mimefilename_list[$posindice] = $this->html_images[$i]['name'];
329 } else {
330 $posindice = array_search($this->html_images[$i]['fullpath'], $filename_list);
331 }
332 // We complete the array of cid_list
333 $cid_list[$posindice] = $this->html_images[$i]['cid'];
334 }
335 dol_syslog("CMailFile::CMailfile: html_images[$i]['name']=".$this->html_images[$i]['name'], LOG_DEBUG);
336 }
337 }
338 }
339 }
340 //var_dump($filename_list);
341 //var_dump($cid_list);exit;
342
343 // Set atleastoneimage if there is at least one file (into $filename_list array)
344 if (is_array($filename_list)) {
345 foreach ($filename_list as $i => $val) {
346 if ($filename_list[$i]) {
347 $this->atleastonefile = 1;
348 dol_syslog("CMailFile::CMailfile: filename_list[$i]=".$filename_list[$i].", mimetype_list[$i]=".$mimetype_list[$i]." mimefilename_list[$i]=".$mimefilename_list[$i]." cid_list[$i]=".(empty($cid_list[$i]) ? '' : $cid_list[$i]), LOG_DEBUG);
349 }
350 }
351 }
352
353 // Add auto copy to if not already in $to (Note: Adding bcc for specific modules are also done from pages)
354 // For example MAIN_MAIL_AUTOCOPY_TO can be 'email@example.com, __USER_EMAIL__, ...'
355 if (getDolGlobalString('MAIN_MAIL_AUTOCOPY_TO')) {
356 $listofemailstoadd = explode(',', getDolGlobalString('MAIN_MAIL_AUTOCOPY_TO'));
357 foreach ($listofemailstoadd as $key => $val) {
358 $emailtoadd = $listofemailstoadd[$key];
359 if (trim($emailtoadd) == '__USER_EMAIL__') {
360 if (!empty($user) && !empty($user->email)) {
361 $emailtoadd = $user->email;
362 } else {
363 $emailtoadd = '';
364 }
365 }
366 if ($emailtoadd && preg_match('/'.preg_quote($emailtoadd, '/').'/i', $to)) {
367 $emailtoadd = ''; // Email already in the "To"
368 }
369 if ($emailtoadd) {
370 $listofemailstoadd[$key] = $emailtoadd;
371 } else {
372 unset($listofemailstoadd[$key]);
373 }
374 }
375 if (!empty($listofemailstoadd)) {
376 $addr_bcc .= ($addr_bcc ? ', ' : '').implode(', ', $listofemailstoadd);
377 }
378 }
379
380 // Verify if $to, $addr_cc and addr_bcc have unwanted addresses
381 if (getDolGlobalString('MAIN_MAIL_FORCE_NOT_SENDING_TO')) {
382 //Verify for $to
383 $replaceto = false;
384 $tabto = explode(",", $to);
385 $listofemailstonotsendto = explode(',', getDolGlobalString('MAIN_MAIL_FORCE_NOT_SENDING_TO'));
386 foreach ($tabto as $key => $addrto) {
387 $addrto = array_keys($this->getArrayAddress($addrto));
388 if (in_array($addrto[0], $listofemailstonotsendto)) {
389 unset($tabto[$key]);
390 $replaceto = true;
391 }
392 }
393 if ($replaceto && getDolGlobalString('MAIN_MAIL_FORCE_NOT_SENDING_TO_REPLACE')) {
394 $tabto[] = getDolGlobalString('MAIN_MAIL_FORCE_NOT_SENDING_TO_REPLACE');
395 }
396 $to = implode(',', $tabto);
397
398 //Verify for $addr_cc
399 $replacecc = false;
400 $tabcc = explode(',', $addr_cc);
401 foreach ($tabcc as $key => $cc) {
402 $cc = array_keys($this->getArrayAddress($cc));
403 if (in_array($cc[0], $listofemailstonotsendto)) {
404 unset($tabcc[$key]);
405 $replacecc = true;
406 }
407 }
408 if ($replacecc && getDolGlobalString('MAIN_MAIL_FORCE_NOT_SENDING_TO_REPLACE')) {
409 $tabcc[] = getDolGlobalString('MAIN_MAIL_FORCE_NOT_SENDING_TO_REPLACE');
410 }
411 $addr_cc = implode(',', $tabcc);
412
413 //Verify for $addr_bcc
414 $replacebcc = false;
415 $tabbcc = explode(',', $addr_bcc);
416 foreach ($tabbcc as $key => $bcc) {
417 $bcc = array_keys($this->getArrayAddress($bcc));
418 if (in_array($bcc[0], $listofemailstonotsendto)) {
419 unset($tabbcc[$key]);
420 $replacebcc = true;
421 }
422 }
423 if ($replacebcc && getDolGlobalString('MAIN_MAIL_FORCE_NOT_SENDING_TO_REPLACE')) {
424 $tabbcc[] = getDolGlobalString('MAIN_MAIL_FORCE_NOT_SENDING_TO_REPLACE');
425 }
426 $addr_bcc = implode(',', $tabbcc);
427 }
428
429 // We always use a replyto
430 if (empty($replyto)) {
431 $replyto = dol_sanitizeEmail($from);
432 }
433 // We can force the from
434 if (getDolGlobalString('MAIN_MAIL_FORCE_FROM')) {
435 $from = getDolGlobalString('MAIN_MAIL_FORCE_FROM');
436 }
437
438 $this->subject = $subject;
439 $this->addr_to = dol_sanitizeEmail($to);
440 $this->addr_from = dol_sanitizeEmail($from);
441 $this->msg = $msg;
442 $this->addr_cc = dol_sanitizeEmail($addr_cc);
443 $this->addr_bcc = dol_sanitizeEmail($addr_bcc);
444 $this->deliveryreceipt = $deliveryreceipt;
445 $this->reply_to = dol_sanitizeEmail($replyto);
446 $this->errors_to = dol_sanitizeEmail($errors_to);
447 $this->trackid = $trackid;
448 $this->in_reply_to = $in_reply_to;
449 $this->references = $references;
450 // Set arrays with attached files info
451 $this->filename_list = $filename_list;
452 $this->mimetype_list = $mimetype_list;
453 $this->mimefilename_list = $mimefilename_list;
454 $this->cid_list = $cid_list;
455
456 if (getDolGlobalString('MAIN_MAIL_FORCE_SENDTO')) {
457 $this->addr_to = dol_sanitizeEmail(getDolGlobalString('MAIN_MAIL_FORCE_SENDTO'));
458 $this->addr_cc = '';
459 $this->addr_bcc = '';
460 }
461
462 $keyforsslseflsigned = 'MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED';
463 if (!empty($this->sendcontext)) {
464 $smtpContextKey = strtoupper($this->sendcontext);
465 $smtpContextSendMode = getDolGlobalString('MAIN_MAIL_SENDMODE_'.$smtpContextKey);
466 if (!empty($smtpContextSendMode) && $smtpContextSendMode != 'default') {
467 $keyforsslseflsigned = 'MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED_'.$smtpContextKey;
468 }
469 }
470
471 dol_syslog("CMailFile::CMailfile: sendmode=".$this->sendmode." addr_bcc=$addr_bcc, replyto=$replyto", LOG_DEBUG);
472
473 // We set all data according to chose sending method.
474 // We also set a value for ->msgid
475 if ($this->sendmode == 'mail') {
476 // Use mail php function (default PHP method)
477 // ------------------------------------------
478
479 $smtp_headers = "";
480 $mime_headers = "";
481 $text_body = "";
482 $files_encoded = "";
483
484 // Define smtp_headers (this also set SMTP headers from ->msgid, ->in_reply_to and ->references)
485 $smtp_headers = $this->write_smtpheaders();
486 if (!empty($moreinheader)) {
487 $smtp_headers .= $moreinheader; // $moreinheader contains the \r\n
488 }
489
490 // Define mime_headers
491 $mime_headers = $this->write_mimeheaders($filename_list, $mimefilename_list);
492
493 if (!empty($this->html)) {
494 if (!empty($css)) {
495 $this->css = $css;
496 $this->buildCSS(); // Build a css style (mode = all) into this->styleCSS and this->bodyCSS
497 }
498
499 $msg = $this->html;
500 }
501
502 // Define body in text_body
503 $text_body = $this->write_body($msg);
504
505 // Add attachments to text_encoded
506 if (!empty($this->atleastonefile)) {
507 $files_encoded = $this->write_files($filename_list, $mimetype_list, $mimefilename_list, $cid_list);
508 }
509
510 // We now define $this->headers and $this->message
511 $this->headers = $smtp_headers.$mime_headers;
512 // Clean the header to avoid that it terminates with a CR character.
513 // This avoid also empty lines at end that can be interpreted as mail injection by email servers.
514 $this->headers = preg_replace("/([\r\n]+)$/i", "", $this->headers);
515
516 //$this->message = $this->eol.'This is a message with multiple parts in MIME format.'.$this->eol;
517 $this->message = 'This is a message with multiple parts in MIME format.'.$this->eol;
518 $this->message .= $text_body.$files_encoded;
519 $this->message .= "--".$this->mixed_boundary."--".$this->eol;
520 } elseif ($this->sendmode == 'smtps') {
521 // Use SMTPS library
522 // ------------------------------------------
523 $host = dol_getprefix('email');
524
525 require_once DOL_DOCUMENT_ROOT.'/core/class/smtps.class.php';
526 $smtps = new SMTPs();
527 $smtps->setCharSet($conf->file->character_set_client);
528
529 // Encode subject if required.
530 $subjecttouse = $this->subject;
531 if (!ascii_check($subjecttouse)) {
532 $subjecttouse = $this->encodetorfc2822($subjecttouse);
533 }
534
535 $smtps->setSubject($subjecttouse);
536 $smtps->setTO($this->getValidAddress($this->addr_to, 0, 1));
537 $smtps->setFrom($this->getValidAddress($this->addr_from, 0, 1));
538 $smtps->setReplyTo($this->getValidAddress($this->reply_to, 0, 1));
539
540 $smtps->setTrackId($this->trackid);
541
542 if (!empty($this->in_reply_to)) {
543 $smtps->setInReplyTo($this->in_reply_to);
544 }
545 if (!empty($this->references)) {
546 $smtps->setReferences($this->references);
547 }
548
549 if (!empty($moreinheader)) {
550 $smtps->setMoreInHeader($moreinheader);
551 }
552
553 //X-Dolibarr-TRACKID, In-Reply-To, References and $moreinheader will be added to header inside the smtps->getHeader
554
555 if (!empty($this->html)) {
556 if (!empty($css)) {
557 $this->css = $css;
558 $this->buildCSS();
559 }
560 $msg = $this->html;
561 $msg = $this->checkIfHTML($msg); // This add a header and a body including custom CSS to the HTML content
562 }
563
564 // Replace . alone on a new line with .. to avoid to have SMTP interpret this as end of message
565 $msg = preg_replace('/(\r|\n)\.(\r|\n)/ims', '\1..\2', $msg);
566
567 if ($this->msgishtml) {
568 $smtps->setBodyContent($msg, 'html');
569 } else {
570 $smtps->setBodyContent($msg, 'plain');
571 }
572
573 if ($this->atleastoneimage) {
574 foreach ($this->images_encoded as $img) {
575 $smtps->setImageInline($img['image_encoded'], $img['name'], $img['content_type'], $img['cid']);
576 }
577 }
578
579 if (!empty($this->atleastonefile)) {
580 foreach ($filename_list as $i => $val) {
581 $content = file_get_contents($filename_list[$i]);
582 $smtps->setAttachment($content, $mimefilename_list[$i], $mimetype_list[$i], $cid_list[$i]);
583 }
584 }
585
586 $smtps->setCC($this->addr_cc);
587 $smtps->setBCC($this->addr_bcc);
588 $smtps->setErrorsTo($this->errors_to);
589 $smtps->setDeliveryReceipt($this->deliveryreceipt);
590 if (getDolGlobalString($keyforsslseflsigned)) {
591 $smtps->setOptions(array('ssl' => array('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true)));
592 }
593
594 $this->msgid = time().'.SMTPs-dolibarr-'.$this->trackid.'@'.$host;
595
596 $this->smtps = $smtps;
597 } elseif ($this->sendmode == 'swiftmailer') {
598 // Use Swift Mailer library
599 // ------------------------------------------
600 $host = dol_getprefix('email');
601
602 require_once DOL_DOCUMENT_ROOT.'/includes/swiftmailer/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php';
603
604 // egulias autoloader lib
605 require_once DOL_DOCUMENT_ROOT.'/includes/swiftmailer/autoload.php';
606
607 require_once DOL_DOCUMENT_ROOT.'/includes/swiftmailer/lib/swift_required.php';
608
609 // Create the message
610 //$this->message = Swift_Message::newInstance();
611 $this->message = new Swift_Message();
612 //$this->message = new Swift_SignedMessage();
613 // Adding a trackid header to a message
614 $headers = $this->message->getHeaders();
615
616 $headers->addTextHeader('X-Dolibarr-TRACKID', $this->trackid.'@'.$host);
617 $this->msgid = time().'.swiftmailer-dolibarr-'.$this->trackid.'@'.$host;
618 $headerID = $this->msgid;
619 $msgid = $headers->get('Message-ID');
620 $msgid->setId($headerID);
621
622 // Add 'In-Reply-To:' header
623 if (!empty($this->in_reply_to)) {
624 $headers->addIdHeader('In-Reply-To', $this->in_reply_to);
625 }
626 // Add 'References:' header
627 if (!empty($this->references)) {
628 $headers->addIdHeader('References', $this->references);
629 }
630
631 if (!empty($moreinheader)) {
632 $moreinheaderarray = preg_split('/[\r\n]+/', $moreinheader);
633 foreach ($moreinheaderarray as $moreinheaderval) {
634 $moreinheadervaltmp = explode(':', $moreinheaderval, 2);
635 if (!empty($moreinheadervaltmp[0]) && !empty($moreinheadervaltmp[1])) {
636 $headers->addTextHeader($moreinheadervaltmp[0], $moreinheadervaltmp[1]);
637 }
638 }
639 }
640
641 // Give the message a subject
642 try {
643 $this->message->setSubject($this->subject);
644 } catch (Exception $e) {
645 $this->errors[] = $e->getMessage();
646 }
647
648 // Set the From address with an associative array
649 //$this->message->setFrom(array('john@doe.com' => 'John Doe'));
650 if (!empty($this->addr_from)) {
651 try {
652 if (getDolGlobalString('MAIN_FORCE_DISABLE_MAIL_SPOOFING')) {
653 // Prevent email spoofing for smtp server with a strict configuration
654 $regexp = '/([a-z0-9_\.\-\+])+\@(([a-z0-9\-])+\.)+([a-z0-9]{2,4})+/i'; // This regular expression extracts all emails from a string
655 $adressEmailFrom = array();
656 $emailMatchs = preg_match_all($regexp, $from, $adressEmailFrom);
657 $adressEmailFrom = reset($adressEmailFrom);
658 if ($emailMatchs !== false && filter_var($conf->global->MAIN_MAIL_SMTPS_ID, FILTER_VALIDATE_EMAIL) && $conf->global->MAIN_MAIL_SMTPS_ID !== $adressEmailFrom) {
659 $this->message->setFrom($conf->global->MAIN_MAIL_SMTPS_ID);
660 } else {
661 $this->message->setFrom($this->getArrayAddress($this->addr_from));
662 }
663 } else {
664 $this->message->setFrom($this->getArrayAddress($this->addr_from));
665 }
666 } catch (Exception $e) {
667 $this->errors[] = $e->getMessage();
668 }
669 }
670
671 // Set the To addresses with an associative array
672 if (!empty($this->addr_to)) {
673 try {
674 $this->message->setTo($this->getArrayAddress($this->addr_to));
675 } catch (Exception $e) {
676 $this->errors[] = $e->getMessage();
677 }
678 }
679
680 if (!empty($this->reply_to)) {
681 try {
682 $this->message->SetReplyTo($this->getArrayAddress($this->reply_to));
683 } catch (Exception $e) {
684 $this->errors[] = $e->getMessage();
685 }
686 }
687
688 if (!empty($this->errors_to)) {
689 try {
690 $headers->addTextHeader('Errors-To', $this->getArrayAddress($this->errors_to));
691 } catch (Exception $e) {
692 $this->errors[] = $e->getMessage();
693 }
694 }
695
696 try {
697 $this->message->setCharSet($conf->file->character_set_client);
698 } catch (Exception $e) {
699 $this->errors[] = $e->getMessage();
700 }
701
702 if (!empty($this->html)) {
703 if (!empty($css)) {
704 $this->css = $css;
705 $this->buildCSS();
706 }
707 $msg = $this->html;
708 $msg = $this->checkIfHTML($msg); // This add a header and a body including custom CSS to the HTML content
709 }
710
711 if ($this->atleastoneimage) {
712 foreach ($this->html_images as $img) {
713 // $img['fullpath'],$img['image_encoded'],$img['name'],$img['content_type'],$img['cid']
714 $attachment = Swift_Image::fromPath($img['fullpath']);
715 // embed image
716 $imgcid = $this->message->embed($attachment);
717 // replace cid by the one created by swiftmail in html message
718 $msg = str_replace("cid:".$img['cid'], $imgcid, $msg);
719 }
720 foreach ($this->images_encoded as $img) {
721 //$img['fullpath'],$img['image_encoded'],$img['name'],$img['content_type'],$img['cid']
722 $attachment = Swift_Image::fromPath($img['fullpath']);
723 // embed image
724 $imgcid = $this->message->embed($attachment);
725 // replace cid by the one created by swiftmail in html message
726 $msg = str_replace("cid:".$img['cid'], $imgcid, $msg);
727 }
728 }
729
730 if ($this->msgishtml) {
731 $this->message->setBody($msg, 'text/html');
732 // And optionally an alternative body
733 $this->message->addPart(html_entity_decode(strip_tags($msg)), 'text/plain');
734 } else {
735 $this->message->setBody($msg, 'text/plain');
736 // And optionally an alternative body
737 $this->message->addPart(dol_nl2br($msg), 'text/html');
738 }
739
740 if (!empty($this->atleastonefile)) {
741 foreach ($filename_list as $i => $val) {
742 //$this->message->attach(Swift_Attachment::fromPath($filename_list[$i],$mimetype_list[$i]));
743 $attachment = Swift_Attachment::fromPath($filename_list[$i], $mimetype_list[$i]);
744 if (!empty($mimefilename_list[$i])) {
745 $attachment->setFilename($mimefilename_list[$i]);
746 }
747 $this->message->attach($attachment);
748 }
749 }
750
751 if (!empty($this->addr_cc)) {
752 try {
753 $this->message->setCc($this->getArrayAddress($this->addr_cc));
754 } catch (Exception $e) {
755 $this->errors[] = $e->getMessage();
756 }
757 }
758 if (!empty($this->addr_bcc)) {
759 try {
760 $this->message->setBcc($this->getArrayAddress($this->addr_bcc));
761 } catch (Exception $e) {
762 $this->errors[] = $e->getMessage();
763 }
764 }
765 //if (!empty($this->errors_to)) $this->message->setErrorsTo($this->getArrayAddress($this->errors_to));
766 if (isset($this->deliveryreceipt) && $this->deliveryreceipt == 1) {
767 try {
768 $this->message->setReadReceiptTo($this->getArrayAddress($this->addr_from));
769 } catch (Exception $e) {
770 $this->errors[] = $e->getMessage();
771 }
772 }
773 } else {
774 // Send mail method not correctly defined
775 // --------------------------------------
776 $this->error = 'Bad value for sendmode';
777 }
778 }
779
787 public function sendfile()
788 {
789 global $conf, $db, $langs, $hookmanager;
790
791 $errorlevel = error_reporting();
792 //error_reporting($errorlevel ^ E_WARNING); // Desactive warnings
793
794 $res = false;
795
796 if (!getDolGlobalString('MAIN_DISABLE_ALL_MAILS')) {
797 if (!is_object($hookmanager)) {
798 include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
799 $hookmanager = new HookManager($db);
800 }
801 $hookmanager->initHooks(array('mail'));
802
803 $parameters = array();
804 $action = '';
805 $reshook = $hookmanager->executeHooks('sendMail', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
806 if ($reshook < 0) {
807 $this->error = "Error in hook maildao sendMail ".$reshook;
808 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_ERR);
809
810 return false;
811 }
812 if ($reshook == 1) { // Hook replace standard code
813 return true;
814 }
815
816 $sendingmode = $this->sendmode;
817 if ($this->sendcontext == 'emailing' && getDolGlobalString('MAILING_NO_USING_PHPMAIL') && $sendingmode == 'mail') {
818 // List of sending methods
819 $listofmethods = array();
820 $listofmethods['mail'] = 'PHP mail function';
821 //$listofmethods['simplemail']='Simplemail class';
822 $listofmethods['smtps'] = 'SMTP/SMTPS socket library';
823
824 // EMailing feature may be a spam problem, so when you host several users/instance, having this option may force each user to use their own SMTP agent.
825 // You ensure that every user is using its own SMTP server when using the mass emailing module.
826 $linktoadminemailbefore = '<a href="'.DOL_URL_ROOT.'/admin/mails.php">';
827 $linktoadminemailend = '</a>';
828 $this->error = $langs->trans("MailSendSetupIs", $listofmethods[$sendingmode]);
829 $this->errors[] = $langs->trans("MailSendSetupIs", $listofmethods[$sendingmode]);
830 $this->error .= '<br>'.$langs->trans("MailSendSetupIs2", $linktoadminemailbefore, $linktoadminemailend, $langs->transnoentitiesnoconv("MAIN_MAIL_SENDMODE"), $listofmethods['smtps']);
831 $this->errors[] = $langs->trans("MailSendSetupIs2", $linktoadminemailbefore, $linktoadminemailend, $langs->transnoentitiesnoconv("MAIN_MAIL_SENDMODE"), $listofmethods['smtps']);
832 if (getDolGlobalString('MAILING_SMTP_SETUP_EMAILS_FOR_QUESTIONS')) {
833 $this->error .= '<br>'.$langs->trans("MailSendSetupIs3", getDolGlobalString('MAILING_SMTP_SETUP_EMAILS_FOR_QUESTIONS'));
834 $this->errors[] = $langs->trans("MailSendSetupIs3", getDolGlobalString('MAILING_SMTP_SETUP_EMAILS_FOR_QUESTIONS'));
835 }
836
837 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_WARNING);
838 return false;
839 }
840
841 // Check number of recipient is lower or equal than MAIL_MAX_NB_OF_RECIPIENTS_IN_SAME_EMAIL
842 if (!getDolGlobalString('MAIL_MAX_NB_OF_RECIPIENTS_TO_IN_SAME_EMAIL')) {
843 $conf->global->MAIL_MAX_NB_OF_RECIPIENTS_TO_IN_SAME_EMAIL = 10;
844 }
845 $tmparray1 = explode(',', $this->addr_to);
846 if (count($tmparray1) > $conf->global->MAIL_MAX_NB_OF_RECIPIENTS_TO_IN_SAME_EMAIL) {
847 $this->error = 'Too much recipients in to:';
848 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_WARNING);
849 return false;
850 }
851 if (!getDolGlobalString('MAIL_MAX_NB_OF_RECIPIENTS_CC_IN_SAME_EMAIL')) {
852 $conf->global->MAIL_MAX_NB_OF_RECIPIENTS_CC_IN_SAME_EMAIL = 10;
853 }
854 $tmparray2 = explode(',', $this->addr_cc);
855 if (count($tmparray2) > $conf->global->MAIL_MAX_NB_OF_RECIPIENTS_CC_IN_SAME_EMAIL) {
856 $this->error = 'Too much recipients in cc:';
857 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_WARNING);
858 return false;
859 }
860 if (!getDolGlobalString('MAIL_MAX_NB_OF_RECIPIENTS_BCC_IN_SAME_EMAIL')) {
861 $conf->global->MAIL_MAX_NB_OF_RECIPIENTS_BCC_IN_SAME_EMAIL = 10;
862 }
863 $tmparray3 = explode(',', $this->addr_bcc);
864 if (count($tmparray3) > $conf->global->MAIL_MAX_NB_OF_RECIPIENTS_BCC_IN_SAME_EMAIL) {
865 $this->error = 'Too much recipients in bcc:';
866 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_WARNING);
867 return false;
868 }
869 if (!getDolGlobalString('MAIL_MAX_NB_OF_RECIPIENTS_IN_SAME_EMAIL')) {
870 $conf->global->MAIL_MAX_NB_OF_RECIPIENTS_IN_SAME_EMAIL = 10;
871 }
872 if ((count($tmparray1) + count($tmparray2) + count($tmparray3)) > $conf->global->MAIL_MAX_NB_OF_RECIPIENTS_IN_SAME_EMAIL) {
873 $this->error = 'Too much recipients in to:, cc:, bcc:';
874 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_WARNING);
875 return false;
876 }
877
878 $keyforsmtpserver = 'MAIN_MAIL_SMTP_SERVER';
879 $keyforsmtpport = 'MAIN_MAIL_SMTP_PORT';
880 $keyforsmtpid = 'MAIN_MAIL_SMTPS_ID';
881 $keyforsmtppw = 'MAIN_MAIL_SMTPS_PW';
882 $keyforsmtpauthtype = 'MAIN_MAIL_SMTPS_AUTH_TYPE';
883 $keyforsmtpoauthservice = 'MAIN_MAIL_SMTPS_OAUTH_SERVICE';
884 $keyfortls = 'MAIN_MAIL_EMAIL_TLS';
885 $keyforstarttls = 'MAIN_MAIL_EMAIL_STARTTLS';
886 $keyforsslseflsigned = 'MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED';
887 if (!empty($this->sendcontext)) {
888 $smtpContextKey = strtoupper($this->sendcontext);
889 $smtpContextSendMode = getDolGlobalString('MAIN_MAIL_SENDMODE_'.$smtpContextKey);
890 if (!empty($smtpContextSendMode) && $smtpContextSendMode != 'default') {
891 $keyforsmtpserver = 'MAIN_MAIL_SMTP_SERVER_'.$smtpContextKey;
892 $keyforsmtpport = 'MAIN_MAIL_SMTP_PORT_'.$smtpContextKey;
893 $keyforsmtpid = 'MAIN_MAIL_SMTPS_ID_'.$smtpContextKey;
894 $keyforsmtppw = 'MAIN_MAIL_SMTPS_PW_'.$smtpContextKey;
895 $keyforsmtpauthtype = 'MAIN_MAIL_SMTPS_AUTH_TYPE_'.$smtpContextKey;
896 $keyforsmtpoauthservice = 'MAIN_MAIL_SMTPS_OAUTH_SERVICE_'.$smtpContextKey;
897 $keyfortls = 'MAIN_MAIL_EMAIL_TLS_'.$smtpContextKey;
898 $keyforstarttls = 'MAIN_MAIL_EMAIL_STARTTLS_'.$smtpContextKey;
899 $keyforsslseflsigned = 'MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED_'.$smtpContextKey;
900 }
901 }
902
903 // Action according to chose sending method
904 if ($this->sendmode == 'mail') {
905 // Use mail php function (default PHP method)
906 // ------------------------------------------
907 dol_syslog("CMailFile::sendfile addr_to=".$this->addr_to.", subject=".$this->subject, LOG_DEBUG);
908 //dol_syslog("CMailFile::sendfile header=\n".$this->headers, LOG_DEBUG);
909 //dol_syslog("CMailFile::sendfile message=\n".$message);
910
911 // If Windows, sendmail_from must be defined
912 if (isset($_SERVER["WINDIR"])) {
913 if (empty($this->addr_from)) {
914 $this->addr_from = 'robot@example.com';
915 }
916 @ini_set('sendmail_from', $this->getValidAddress($this->addr_from, 2));
917 }
918
919 // Force parameters
920 //dol_syslog("CMailFile::sendfile conf->global->".$keyforsmtpserver."=".getDolGlobalString($keyforsmtpserver)." cpnf->global->".$keyforsmtpport."=".$conf->global->$keyforsmtpport, LOG_DEBUG);
921 if (getDolGlobalString($keyforsmtpserver)) {
922 ini_set('SMTP', getDolGlobalString($keyforsmtpserver));
923 }
924 if (getDolGlobalString($keyforsmtpport)) {
925 ini_set('smtp_port', getDolGlobalString($keyforsmtpport));
926 }
927
928 $res = true;
929 if ($res && !$this->subject) {
930 $this->error = "Failed to send mail with php mail to HOST=".ini_get('SMTP').", PORT=".ini_get('smtp_port')."<br>Subject is empty";
931 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_ERR);
932 $res = false;
933 }
934 $dest = $this->getValidAddress($this->addr_to, 2);
935 if ($res && !$dest) {
936 $this->error = "Failed to send mail with php mail to HOST=".ini_get('SMTP').", PORT=".ini_get('smtp_port')."<br>Recipient address '$dest' invalid";
937 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_ERR);
938 $res = false;
939 }
940
941 if ($res) {
942 $additionnalparam = ''; // By default
943 if (getDolGlobalString('MAIN_MAIL_ALLOW_SENDMAIL_F')) {
944 // When using the phpmail function, the mail command may force the from to the user of the login, for example: linuxuser@myserver.mydomain.com
945 // You can try to set this option to have the command use the From. if it does not work, you can also try the MAIN_MAIL_SENDMAIL_FORCE_BA.
946 // So forcing using the option -f of sendmail is possible if constant MAIN_MAIL_ALLOW_SENDMAIL_F is defined.
947 // Having this variable defined may create problems with some sendmail (option -f refused)
948 // Having this variable not defined may create problems with some other sendmail (option -f required)
949 $additionnalparam .= ($additionnalparam ? ' ' : '').(getDolGlobalString('MAIN_MAIL_ERRORS_TO') ? '-f'.$this->getValidAddress($conf->global->MAIN_MAIL_ERRORS_TO, 2) : ($this->addr_from != '' ? '-f'.$this->getValidAddress($this->addr_from, 2) : ''));
950 }
951 if (getDolGlobalString('MAIN_MAIL_SENDMAIL_FORCE_BA')) { // To force usage of -ba option. This option tells sendmail to read From: or Sender: to setup sender
952 $additionnalparam .= ($additionnalparam ? ' ' : '').'-ba';
953 }
954
955 if (getDolGlobalString('MAIN_MAIL_SENDMAIL_FORCE_ADDPARAM')) {
956 $additionnalparam .= ($additionnalparam ? ' ' : '').'-U '.$additionnalparam; // Use -U to add additional params
957 }
958
959 $linuxlike = 1;
960 if (preg_match('/^win/i', PHP_OS)) {
961 $linuxlike = 0;
962 }
963 if (preg_match('/^mac/i', PHP_OS)) {
964 $linuxlike = 0;
965 }
966
967 dol_syslog("CMailFile::sendfile: mail start".($linuxlike ? '' : " HOST=".ini_get('SMTP').", PORT=".ini_get('smtp_port')).", additionnal_parameters=".$additionnalparam, LOG_DEBUG);
968
969 $this->message = stripslashes($this->message);
970
971 if (getDolGlobalString('MAIN_MAIL_DEBUG')) {
972 $this->dump_mail();
973 }
974
975 // Encode subject if required.
976 $subjecttouse = $this->subject;
977 if (!ascii_check($subjecttouse)) {
978 $subjecttouse = $this->encodetorfc2822($subjecttouse);
979 }
980
981 if (!empty($additionnalparam)) {
982 $res = mail($dest, $subjecttouse, $this->message, $this->headers, $additionnalparam);
983 } else {
984 $res = mail($dest, $subjecttouse, $this->message, $this->headers);
985 }
986
987 if (!$res) {
988 $langs->load("errors");
989 $this->error = "Failed to send mail with php mail";
990 if (!$linuxlike) {
991 $this->error .= " to HOST=".ini_get('SMTP').", PORT=".ini_get('smtp_port'); // This values are value used only for non linuxlike systems
992 }
993 $this->error .= ".<br>";
994 $this->error .= $langs->trans("ErrorPhpMailDelivery");
995 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_ERR);
996
997 if (getDolGlobalString('MAIN_MAIL_DEBUG')) {
998 $this->save_dump_mail_in_err('Mail with topic '.$this->subject);
999 }
1000 } else {
1001 dol_syslog("CMailFile::sendfile: mail end success", LOG_DEBUG);
1002 }
1003 }
1004
1005 if (isset($_SERVER["WINDIR"])) {
1006 @ini_restore('sendmail_from');
1007 }
1008
1009 // Restore parameters
1010 if (getDolGlobalString($keyforsmtpserver)) {
1011 ini_restore('SMTP');
1012 }
1013 if (getDolGlobalString($keyforsmtpport)) {
1014 ini_restore('smtp_port');
1015 }
1016 } elseif ($this->sendmode == 'smtps') {
1017 if (!is_object($this->smtps)) {
1018 $this->error = "Failed to send mail with smtps lib<br>Constructor of object CMailFile was not initialized without errors.";
1019 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_ERR);
1020 return false;
1021 }
1022
1023 // Use SMTPS library
1024 // ------------------------------------------
1025 $this->smtps->setTransportType(0); // Only this method is coded in SMTPs library
1026
1027 // Clean parameters
1028 if (empty($conf->global->$keyforsmtpserver)) {
1029 $conf->global->$keyforsmtpserver = ini_get('SMTP');
1030 }
1031 if (empty($conf->global->$keyforsmtpport)) {
1032 $conf->global->$keyforsmtpport = ini_get('smtp_port');
1033 }
1034
1035 // If we use SSL/TLS
1036 $server = getDolGlobalString($keyforsmtpserver);
1037 $secure = '';
1038 if (getDolGlobalString($keyfortls) && function_exists('openssl_open')) {
1039 $secure = 'ssl';
1040 }
1041 if (getDolGlobalString($keyforstarttls) && function_exists('openssl_open')) {
1042 $secure = 'tls';
1043 }
1044 $server = ($secure ? $secure.'://' : '').$server;
1045
1046 $port = getDolGlobalInt($keyforsmtpport);
1047
1048 $this->smtps->setHost($server);
1049 $this->smtps->setPort($port); // 25, 465...;
1050
1051 $loginid = '';
1052 $loginpass = '';
1053 if (getDolGlobalString($keyforsmtpid)) {
1054 $loginid = getDolGlobalString($keyforsmtpid);
1055 $this->smtps->setID($loginid);
1056 }
1057 if (getDolGlobalString($keyforsmtppw)) {
1058 $loginpass = getDolGlobalString($keyforsmtppw);
1059 $this->smtps->setPW($loginpass);
1060 }
1061
1062 if (getDolGlobalString($keyforsmtpauthtype) === "XOAUTH2") {
1063 require_once DOL_DOCUMENT_ROOT.'/core/lib/oauth.lib.php'; // define $supportedoauth2array
1064
1065 $supportedoauth2array = getSupportedOauth2Array();
1066
1067 $keyforsupportedoauth2array = getDolGlobalString($keyforsmtpoauthservice);
1068 if (preg_match('/^.*-/', $keyforsupportedoauth2array)) {
1069 $keyforprovider = preg_replace('/^.*-/', '', $keyforsupportedoauth2array);
1070 } else {
1071 $keyforprovider = '';
1072 }
1073 $keyforsupportedoauth2array = preg_replace('/-.*$/', '', $keyforsupportedoauth2array);
1074 $keyforsupportedoauth2array = 'OAUTH_'.$keyforsupportedoauth2array.'_NAME';
1075
1076 if (!empty($supportedoauth2array)) {
1077 $OAUTH_SERVICENAME = (empty($supportedoauth2array[$keyforsupportedoauth2array]['name']) ? 'Unknown' : $supportedoauth2array[$keyforsupportedoauth2array]['name'].($keyforprovider ? '-'.$keyforprovider : ''));
1078 } else {
1079 $OAUTH_SERVICENAME = 'Unknown';
1080 }
1081
1082 require_once DOL_DOCUMENT_ROOT.'/includes/OAuth/bootstrap.php';
1083
1084 $storage = new DoliStorage($db, $conf, $keyforprovider);
1085 try {
1086 $tokenobj = $storage->retrieveAccessToken($OAUTH_SERVICENAME);
1087 $expire = false;
1088 // Is token expired or will token expire in the next 30 seconds
1089 if (is_object($tokenobj)) {
1090 $expire = ($tokenobj->getEndOfLife() !== -9002 && $tokenobj->getEndOfLife() !== -9001 && time() > ($tokenobj->getEndOfLife() - 30));
1091 }
1092 // Token expired so we refresh it
1093 if (is_object($tokenobj) && $expire) {
1094 $credentials = new Credentials(
1095 getDolGlobalString('OAUTH_'.getDolGlobalString('MAIN_MAIL_SMTPS_OAUTH_SERVICE').'_ID'),
1096 getDolGlobalString('OAUTH_'.getDolGlobalString('MAIN_MAIL_SMTPS_OAUTH_SERVICE').'_SECRET'),
1097 getDolGlobalString('OAUTH_'.getDolGlobalString('MAIN_MAIL_SMTPS_OAUTH_SERVICE').'_URLAUTHORIZE')
1098 );
1099 $serviceFactory = new \OAuth\ServiceFactory();
1100 $oauthname = explode('-', $OAUTH_SERVICENAME);
1101 // ex service is Google-Emails we need only the first part Google
1102 $apiService = $serviceFactory->createService($oauthname[0], $credentials, $storage, array());
1103 // We have to save the token because Google give it only once
1104 $refreshtoken = $tokenobj->getRefreshToken();
1105 $tokenobj = $apiService->refreshAccessToken($tokenobj);
1106 $tokenobj->setRefreshToken($refreshtoken);
1107 $storage->storeAccessToken($OAUTH_SERVICENAME, $tokenobj);
1108 }
1109
1110 $tokenobj = $storage->retrieveAccessToken($OAUTH_SERVICENAME);
1111 if (is_object($tokenobj)) {
1112 $this->smtps->setToken($tokenobj->getAccessToken());
1113 } else {
1114 $this->error = "Token not found";
1115 }
1116 } catch (Exception $e) {
1117 // Return an error if token not found
1118 $this->error = $e->getMessage();
1119 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_ERR);
1120 }
1121 }
1122
1123 $res = true;
1124 $from = $this->smtps->getFrom('org');
1125 if ($res && !$from) {
1126 $this->error = "Failed to send mail with smtps lib to HOST=".$server.", PORT=" . getDolGlobalString($keyforsmtpport)." - Sender address '$from' invalid";
1127 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_ERR);
1128 $res = false;
1129 }
1130 $dest = $this->smtps->getTo();
1131 if ($res && !$dest) {
1132 $this->error = "Failed to send mail with smtps lib to HOST=".$server.", PORT=" . getDolGlobalString($keyforsmtpport)." - Recipient address '$dest' invalid";
1133 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_ERR);
1134 $res = false;
1135 }
1136
1137 if ($res) {
1138 dol_syslog("CMailFile::sendfile: sendMsg, HOST=".$server.", PORT=" . getDolGlobalString($keyforsmtpport), LOG_DEBUG);
1139
1140 if (getDolGlobalString('MAIN_MAIL_DEBUG')) {
1141 $this->smtps->setDebug(true);
1142 }
1143
1144 $result = $this->smtps->sendMsg();
1145
1146 if (getDolGlobalString('MAIN_MAIL_DEBUG')) {
1147 $this->dump_mail();
1148 }
1149
1150 $smtperrorcode = 0;
1151 if (! $result) {
1152 $smtperrorcode = $this->smtps->lastretval; // SMTP error code
1153 dol_syslog("CMailFile::sendfile: mail SMTP error code ".$smtperrorcode, LOG_WARNING);
1154
1155 if ($smtperrorcode == '421') { // Try later
1156 // TODO Add a delay and try again
1157 /*
1158 dol_syslog("CMailFile::sendfile: Try later error, so we wait and we retry");
1159 sleep(2);
1160
1161 $result = $this->smtps->sendMsg();
1162
1163 if (!empty($conf->global->MAIN_MAIL_DEBUG)) {
1164 $this->dump_mail();
1165 }
1166 */
1167 }
1168 }
1169
1170 $result = $this->smtps->getErrors(); // applicative error code (not SMTP error code)
1171 if (empty($this->error) && empty($result)) {
1172 dol_syslog("CMailFile::sendfile: mail end success", LOG_DEBUG);
1173 $res = true;
1174 } else {
1175 if (empty($this->error)) {
1176 $this->error = $result;
1177 }
1178 dol_syslog("CMailFile::sendfile: mail end error with smtps lib to HOST=".$server.", PORT=" . getDolGlobalString($keyforsmtpport)." - ".$this->error, LOG_ERR);
1179 $res = false;
1180
1181 if (getDolGlobalString('MAIN_MAIL_DEBUG')) {
1182 $this->save_dump_mail_in_err('Mail smtp error '.$smtperrorcode.' with topic '.$this->subject);
1183 }
1184 }
1185 }
1186 } elseif ($this->sendmode == 'swiftmailer') {
1187 // Use Swift Mailer library
1188 // ------------------------------------------
1189 require_once DOL_DOCUMENT_ROOT.'/includes/swiftmailer/lib/swift_required.php';
1190
1191 // Clean parameters
1192 if (empty($conf->global->$keyforsmtpserver)) {
1193 $conf->global->$keyforsmtpserver = ini_get('SMTP');
1194 }
1195 if (empty($conf->global->$keyforsmtpport)) {
1196 $conf->global->$keyforsmtpport = ini_get('smtp_port');
1197 }
1198
1199 // If we use SSL/TLS
1200 $server = getDolGlobalString($keyforsmtpserver);
1201 $secure = '';
1202 if (getDolGlobalString($keyfortls) && function_exists('openssl_open')) {
1203 $secure = 'ssl';
1204 }
1205 if (getDolGlobalString($keyforstarttls) && function_exists('openssl_open')) {
1206 $secure = 'tls';
1207 }
1208
1209 $this->transport = new Swift_SmtpTransport($server, getDolGlobalString($keyforsmtpport), $secure);
1210
1211 if (getDolGlobalString($keyforsmtpid)) {
1212 $this->transport->setUsername($conf->global->$keyforsmtpid);
1213 }
1214 if (getDolGlobalString($keyforsmtppw) && getDolGlobalString($keyforsmtpauthtype) != "XOAUTH2") {
1215 $this->transport->setPassword($conf->global->$keyforsmtppw);
1216 }
1217 if (getDolGlobalString($keyforsmtpauthtype) === "XOAUTH2") {
1218 require_once DOL_DOCUMENT_ROOT.'/core/lib/oauth.lib.php';
1219
1220 $supportedoauth2array = getSupportedOauth2Array();
1221
1222 $keyforsupportedoauth2array = getDolGlobalString($keyforsmtpoauthservice);
1223 if (preg_match('/^.*-/', $keyforsupportedoauth2array)) {
1224 $keyforprovider = preg_replace('/^.*-/', '', $keyforsupportedoauth2array);
1225 } else {
1226 $keyforprovider = '';
1227 }
1228 $keyforsupportedoauth2array = preg_replace('/-.*$/', '', $keyforsupportedoauth2array);
1229 $keyforsupportedoauth2array = 'OAUTH_'.$keyforsupportedoauth2array.'_NAME';
1230
1231 $OAUTH_SERVICENAME = 'Unknown';
1232 if (array_key_exists($keyforsupportedoauth2array, $supportedoauth2array)
1233 && array_key_exists('name', $supportedoauth2array[$keyforsupportedoauth2array])
1234 && !empty($supportedoauth2array[$keyforsupportedoauth2array]['name'])) {
1235 $OAUTH_SERVICENAME = $supportedoauth2array[$keyforsupportedoauth2array]['name'].(!empty($keyforprovider) ? '-'.$keyforprovider : '');
1236 }
1237
1238 require_once DOL_DOCUMENT_ROOT.'/includes/OAuth/bootstrap.php';
1239
1240 $storage = new DoliStorage($db, $conf, $keyforprovider);
1241
1242 try {
1243 $tokenobj = $storage->retrieveAccessToken($OAUTH_SERVICENAME);
1244 $expire = false;
1245 // Is token expired or will token expire in the next 30 seconds
1246 if (is_object($tokenobj)) {
1247 $expire = ($tokenobj->getEndOfLife() !== -9002 && $tokenobj->getEndOfLife() !== -9001 && time() > ($tokenobj->getEndOfLife() - 30));
1248 }
1249 // Token expired so we refresh it
1250 if (is_object($tokenobj) && $expire) {
1251 $credentials = new Credentials(
1252 getDolGlobalString('OAUTH_'.getDolGlobalString('MAIN_MAIL_SMTPS_OAUTH_SERVICE').'_ID'),
1253 getDolGlobalString('OAUTH_'.getDolGlobalString('MAIN_MAIL_SMTPS_OAUTH_SERVICE').'_SECRET'),
1254 getDolGlobalString('OAUTH_'.getDolGlobalString('MAIN_MAIL_SMTPS_OAUTH_SERVICE').'_URLAUTHORIZE')
1255 );
1256 $serviceFactory = new \OAuth\ServiceFactory();
1257 $oauthname = explode('-', $OAUTH_SERVICENAME);
1258 // ex service is Google-Emails we need only the first part Google
1259 $apiService = $serviceFactory->createService($oauthname[0], $credentials, $storage, array());
1260 // We have to save the token because Google give it only once
1261 $refreshtoken = $tokenobj->getRefreshToken();
1262 $tokenobj = $apiService->refreshAccessToken($tokenobj);
1263 $tokenobj->setRefreshToken($refreshtoken);
1264 $storage->storeAccessToken($OAUTH_SERVICENAME, $tokenobj);
1265 }
1266 if (is_object($tokenobj)) {
1267 $this->transport->setAuthMode('XOAUTH2');
1268 $this->transport->setPassword($tokenobj->getAccessToken());
1269 } else {
1270 $this->errors[] = "Token not found";
1271 }
1272 } catch (Exception $e) {
1273 // Return an error if token not found
1274 $this->errors[] = $e->getMessage();
1275 dol_syslog("CMailFile::sendfile: mail end error=".$e->getMessage(), LOG_ERR);
1276 }
1277 }
1278 if (getDolGlobalString($keyforsslseflsigned)) {
1279 $this->transport->setStreamOptions(array('ssl' => array('allow_self_signed' => true, 'verify_peer' => false)));
1280 }
1281 //$smtps->_msgReplyTo = 'reply@web.com';
1282
1283 // Switch content encoding to base64 - avoid the doubledot issue with quoted-printable
1284 $contentEncoderBase64 = new Swift_Mime_ContentEncoder_Base64ContentEncoder();
1285 $this->message->setEncoder($contentEncoderBase64);
1286
1287 // Create the Mailer using your created Transport
1288 $this->mailer = new Swift_Mailer($this->transport);
1289
1290 // DKIM SIGN
1291 if (getDolGlobalString('MAIN_MAIL_EMAIL_DKIM_ENABLED')) {
1292 $privateKey = getDolGlobalString('MAIN_MAIL_EMAIL_DKIM_PRIVATE_KEY');
1293 $domainName = getDolGlobalString('MAIN_MAIL_EMAIL_DKIM_DOMAIN');
1294 $selector = getDolGlobalString('MAIN_MAIL_EMAIL_DKIM_SELECTOR');
1295 $signer = new Swift_Signers_DKIMSigner($privateKey, $domainName, $selector);
1296 $this->message->attachSigner($signer->ignoreHeader('Return-Path'));
1297 }
1298
1299 if (getDolGlobalString('MAIN_MAIL_DEBUG')) {
1300 // To use the ArrayLogger
1301 $this->logger = new Swift_Plugins_Loggers_ArrayLogger();
1302 // Or to use the Echo Logger
1303 //$this->logger = new Swift_Plugins_Loggers_EchoLogger();
1304 $this->mailer->registerPlugin(new Swift_Plugins_LoggerPlugin($this->logger));
1305 }
1306
1307 dol_syslog("CMailFile::sendfile: mailer->send, HOST=".$server.", PORT=" . getDolGlobalString($keyforsmtpport), LOG_DEBUG);
1308
1309 // send mail
1310 $failedRecipients = array();
1311 try {
1312 $result = $this->mailer->send($this->message, $failedRecipients);
1313 } catch (Exception $e) {
1314 $this->errors[] = $e->getMessage();
1315 }
1316 if (getDolGlobalString('MAIN_MAIL_DEBUG')) {
1317 $this->dump_mail();
1318 }
1319
1320 $res = true;
1321 if (!empty($this->error) || !empty($this->errors) || !$result) {
1322 if (!empty($failedRecipients)) {
1323 $this->errors[] = 'Transport failed for the following addresses: "' . implode('", "', $failedRecipients) . '".';
1324 }
1325 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_ERR);
1326 $res = false;
1327
1328 if (getDolGlobalString('MAIN_MAIL_DEBUG')) {
1329 $this->save_dump_mail_in_err('Mail with topic '.$this->subject);
1330 }
1331 } else {
1332 dol_syslog("CMailFile::sendfile: mail end success", LOG_DEBUG);
1333 }
1334 } else {
1335 // Send mail method not correctly defined
1336 // --------------------------------------
1337
1338 $this->error = 'Bad value for sendmode';
1339 return false;
1340 }
1341
1342 // Now we delete image files that were created dynamically to manage data inline files
1343 foreach ($this->html_images as $val) {
1344 if (!empty($val['type']) && $val['type'] == 'cidfromdata') {
1345 //dol_delete($val['fullpath']);
1346 }
1347 }
1348
1349 $parameters = array('sent' => $res);
1350 $action = '';
1351 $reshook = $hookmanager->executeHooks('sendMailAfter', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1352 if ($reshook < 0) {
1353 $this->error = "Error in hook maildao sendMailAfter ".$reshook;
1354 dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_ERR);
1355
1356 return false;
1357 }
1358 } else {
1359 $this->error = 'No mail sent. Feature is disabled by option MAIN_DISABLE_ALL_MAILS';
1360 dol_syslog("CMailFile::sendfile: ".$this->error, LOG_WARNING);
1361 }
1362
1363 error_reporting($errorlevel); // Reactive niveau erreur origine
1364 return $res;
1365 }
1366
1373 public static function encodetorfc2822($stringtoencode)
1374 {
1375 global $conf;
1376 return '=?'.$conf->file->character_set_client.'?B?'.base64_encode($stringtoencode).'?=';
1377 }
1378
1379 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1386 private function _encode_file($sourcefile)
1387 {
1388 // phpcs:enable
1389 $newsourcefile = dol_osencode($sourcefile);
1390
1391 if (is_readable($newsourcefile)) {
1392 $contents = file_get_contents($newsourcefile); // Need PHP 4.3
1393 $encoded = chunk_split(base64_encode($contents), 76, $this->eol); // 76 max is defined into http://tools.ietf.org/html/rfc2047
1394 return $encoded;
1395 } else {
1396 $this->error = "Error in _encode_file() method: Can't read file '".$sourcefile."'";
1397 dol_syslog("CMailFile::_encode_file: ".$this->error, LOG_ERR);
1398 return -1;
1399 }
1400 }
1401
1402
1403 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1411 public function dump_mail()
1412 {
1413 // phpcs:enable
1414 global $dolibarr_main_data_root;
1415
1416 if (@is_writable($dolibarr_main_data_root)) { // Avoid fatal error on fopen with open_basedir
1417 $outputfile = $dolibarr_main_data_root."/dolibarr_mail.log";
1418 $fp = fopen($outputfile, "w"); // overwrite
1419
1420 if ($this->sendmode == 'mail') {
1421 fwrite($fp, $this->headers);
1422 fwrite($fp, $this->eol); // This eol is added by the mail function, so we add it in log
1423 fwrite($fp, $this->message);
1424 } elseif ($this->sendmode == 'smtps') {
1425 fwrite($fp, $this->smtps->log); // this->smtps->log is filled only if MAIN_MAIL_DEBUG was set to on
1426 } elseif ($this->sendmode == 'swiftmailer') {
1427 fwrite($fp, "smtpheader=\n".$this->message->getHeaders()->toString()."\n");
1428 fwrite($fp, $this->logger->dump()); // this->logger is filled only if MAIN_MAIL_DEBUG was set to on
1429 }
1430
1431 fclose($fp);
1432 dolChmod($outputfile);
1433
1434 // Move dolibarr_mail.log into a dolibarr_mail.log.v123456789
1435 if (getDolGlobalInt('MAIN_MAIL_DEBUG_LOG_WITH_DATE')) {
1436 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
1437 archiveOrBackupFile($outputfile, getDolGlobalInt('MAIN_MAIL_DEBUG_LOG_WITH_DATE'));
1438 }
1439 }
1440 }
1441
1442 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1450 public function save_dump_mail_in_err($message = '')
1451 {
1452 global $dolibarr_main_data_root;
1453
1454 if (@is_writable($dolibarr_main_data_root)) { // Avoid fatal error on fopen with open_basedir
1455 $srcfile = $dolibarr_main_data_root."/dolibarr_mail.log";
1456
1457 // Add message to dolibarr_mail.log. We do not use dol_syslog() on purpose,
1458 // to be sure to write into dolibarr_mail.log
1459 if ($message) {
1460 // Test constant SYSLOG_FILE_NO_ERROR (should stay a constant defined with define('SYSLOG_FILE_NO_ERROR',1);
1461 if (defined('SYSLOG_FILE_NO_ERROR')) {
1462 $filefd = @fopen($srcfile, 'a+');
1463 } else {
1464 $filefd = fopen($srcfile, 'a+');
1465 }
1466 if ($filefd) {
1467 fwrite($filefd, $message."\n");
1468 fclose($filefd);
1469 dolChmod($srcfile);
1470 }
1471 }
1472
1473 // Move dolibarr_mail.log into a dolibarr_mail.err or dolibarr_mail.date.err
1474 if (getDolGlobalString('MAIN_MAIL_DEBUG_ERR_WITH_DATE')) {
1475 $destfile = $dolibarr_main_data_root."/dolibarr_mail.".dol_print_date(dol_now(), 'dayhourlog', 'gmt').".err";
1476 } else {
1477 $destfile = $dolibarr_main_data_root."/dolibarr_mail.err";
1478 }
1479
1480 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
1481 dol_move($srcfile, $destfile, 0, 1, 0, 0);
1482 }
1483 }
1484
1485
1492 public function checkIfHTML($msg)
1493 {
1494 if (!preg_match('/^[\s\t]*<html/i', $msg)) {
1495 $out = "<html><head><title></title>";
1496 if (!empty($this->styleCSS)) {
1497 $out .= $this->styleCSS;
1498 }
1499 $out .= "</head><body";
1500 if (!empty($this->bodyCSS)) {
1501 $out .= $this->bodyCSS;
1502 }
1503 $out .= ">";
1504 $out .= $msg;
1505 $out .= "</body></html>";
1506 } else {
1507 $out = $msg;
1508 }
1509
1510 return $out;
1511 }
1512
1518 public function buildCSS()
1519 {
1520 if (!empty($this->css)) {
1521 // Style CSS
1522 $this->styleCSS = '<style type="text/css">';
1523 $this->styleCSS .= 'body {';
1524
1525 if ($this->css['bgcolor']) {
1526 $this->styleCSS .= ' background-color: '.$this->css['bgcolor'].';';
1527 $this->bodyCSS .= ' bgcolor="'.$this->css['bgcolor'].'"';
1528 }
1529 if ($this->css['bgimage']) {
1530 // TODO recuperer cid
1531 $this->styleCSS .= ' background-image: url("cid:'.$this->css['bgimage_cid'].'");';
1532 }
1533 $this->styleCSS .= '}';
1534 $this->styleCSS .= '</style>';
1535 }
1536 }
1537
1538
1539 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1545 public function write_smtpheaders()
1546 {
1547 // phpcs:enable
1548 $out = "";
1549 $host = dol_getprefix('email');
1550
1551 // Sender
1552 //$out.= "Sender: ".getValidAddress($this->addr_from,2)).$this->eol2;
1553 $out .= "From: ".$this->getValidAddress($this->addr_from, 3, 1).$this->eol2;
1554 if (getDolGlobalString('MAIN_MAIL_SENDMAIL_FORCE_BA')) {
1555 $out .= "To: ".$this->getValidAddress($this->addr_to, 0, 1).$this->eol2;
1556 }
1557 // Return-Path is important because it is used by SPF. Some MTA does not read Return-Path from header but from command line. See option MAIN_MAIL_ALLOW_SENDMAIL_F for that.
1558 $out .= "Return-Path: ".$this->getValidAddress($this->addr_from, 0, 1).$this->eol2;
1559 if (isset($this->reply_to) && $this->reply_to) {
1560 $out .= "Reply-To: ".$this->getValidAddress($this->reply_to, 2).$this->eol2;
1561 }
1562 if (isset($this->errors_to) && $this->errors_to) {
1563 $out .= "Errors-To: ".$this->getValidAddress($this->errors_to, 2).$this->eol2;
1564 }
1565
1566 // Receiver
1567 if (isset($this->addr_cc) && $this->addr_cc) {
1568 $out .= "Cc: ".$this->getValidAddress($this->addr_cc, 2).$this->eol2;
1569 }
1570 if (isset($this->addr_bcc) && $this->addr_bcc) {
1571 $out .= "Bcc: ".$this->getValidAddress($this->addr_bcc, 2).$this->eol2; // TODO Question: bcc must not be into header, only into SMTP command "RCPT TO". Does php mail support this ?
1572 }
1573
1574 // Delivery receipt
1575 if (isset($this->deliveryreceipt) && $this->deliveryreceipt == 1) {
1576 $out .= "Disposition-Notification-To: ".$this->getValidAddress($this->addr_from, 2).$this->eol2;
1577 }
1578
1579 //$out.= "X-Priority: 3".$this->eol2;
1580
1581 $out .= 'Date: '.date("r").$this->eol2;
1582
1583 $trackid = $this->trackid;
1584 if ($trackid) {
1585 $this->msgid = time().'.phpmail-dolibarr-'.$trackid.'@'.$host;
1586 $out .= 'Message-ID: <'.$this->msgid.">".$this->eol2; // Uppercase seems replaced by phpmail
1587 $out .= 'X-Dolibarr-TRACKID: '.$trackid.'@'.$host.$this->eol2;
1588 } else {
1589 $this->msgid = time().'.phpmail@'.$host;
1590 $out .= 'Message-ID: <'.$this->msgid.">".$this->eol2;
1591 }
1592
1593 // Add 'In-Reply-To:' header with the Message-Id we answer
1594 if (!empty($this->in_reply_to)) {
1595 $out .= 'In-Reply-To: <'.$this->in_reply_to.'>'.$this->eol2;
1596 }
1597 // Add 'References:' header with list of all Message-ID in thread history
1598 if (!empty($this->references)) {
1599 $out .= 'References: '.$this->references.$this->eol2;
1600 }
1601
1602 if (!empty($_SERVER['REMOTE_ADDR'])) {
1603 $out .= "X-RemoteAddr: ".$_SERVER['REMOTE_ADDR'].$this->eol2;
1604 }
1605 $out .= "X-Mailer: Dolibarr version ".DOL_VERSION." (using php mail)".$this->eol2;
1606 $out .= "Mime-Version: 1.0".$this->eol2;
1607
1608 //$out.= "From: ".$this->getValidAddress($this->addr_from,3,1).$this->eol;
1609
1610 $out .= "Content-Type: multipart/mixed;".$this->eol2." boundary=\"".$this->mixed_boundary."\"".$this->eol2;
1611 $out .= "Content-Transfer-Encoding: 8bit".$this->eol2; // TODO Seems to be ignored. Header is 7bit once received.
1612
1613 dol_syslog("CMailFile::write_smtpheaders smtp_header=\n".$out);
1614 return $out;
1615 }
1616
1617
1618 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1626 public function write_mimeheaders($filename_list, $mimefilename_list)
1627 {
1628 // phpcs:enable
1629 $mimedone = 0;
1630 $out = "";
1631
1632 if (is_array($filename_list)) {
1633 $filename_list_size = count($filename_list);
1634 for ($i = 0; $i < $filename_list_size; $i++) {
1635 if ($filename_list[$i]) {
1636 if ($mimefilename_list[$i]) {
1637 $filename_list[$i] = $mimefilename_list[$i];
1638 }
1639 $out .= "X-attachments: $filename_list[$i]".$this->eol2;
1640 }
1641 }
1642 }
1643
1644 dol_syslog("CMailFile::write_mimeheaders mime_header=\n".$out, LOG_DEBUG);
1645 return $out;
1646 }
1647
1648 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1655 public function write_body($msgtext)
1656 {
1657 // phpcs:enable
1658 global $conf;
1659
1660 $out = '';
1661
1662 $out .= "--".$this->mixed_boundary.$this->eol;
1663
1664 if ($this->atleastoneimage) {
1665 $out .= "Content-Type: multipart/alternative;".$this->eol." boundary=\"".$this->alternative_boundary."\"".$this->eol;
1666 $out .= $this->eol;
1667 $out .= "--".$this->alternative_boundary.$this->eol;
1668 }
1669
1670 // Make RFC821 Compliant, replace bare linefeeds
1671 $strContent = preg_replace("/(?<!\r)\n/si", "\r\n", $msgtext); // PCRE modifier /s means new lines are common chars
1672 if (getDolGlobalString('MAIN_FIX_FOR_BUGGED_MTA')) {
1673 $strContent = preg_replace("/\r\n/si", "\n", $strContent); // PCRE modifier /s means new lines are common chars
1674 }
1675
1676 $strContentAltText = '';
1677 if ($this->msgishtml) {
1678 // Similar code to forge a text from html is also in smtps.class.php
1679 $strContentAltText = preg_replace("/<br\s*[^>]*>/", " ", $strContent);
1680 // TODO We could replace <img ...> with [Filename.ext] like Gmail do.
1681 $strContentAltText = html_entity_decode(strip_tags($strContentAltText)); // Remove any HTML tags
1682 $strContentAltText = trim(wordwrap($strContentAltText, 75, !getDolGlobalString('MAIN_FIX_FOR_BUGGED_MTA') ? "\r\n" : "\n"));
1683
1684 // Check if html header already in message, if not complete the message
1685 $strContent = $this->checkIfHTML($strContent); // This add a header and a body including custom CSS to the HTML content
1686 }
1687
1688 // Make RFC2045 Compliant, split lines
1689 //$strContent = rtrim(chunk_split($strContent)); // Function chunck_split seems ko if not used on a base64 content
1690 // TODO Encode main content into base64 and use the chunk_split, or quoted-printable
1691 $strContent = rtrim(wordwrap($strContent, 75, !getDolGlobalString('MAIN_FIX_FOR_BUGGED_MTA') ? "\r\n" : "\n")); // TODO Using this method creates unexpected line break on text/plain content.
1692
1693 if ($this->msgishtml) {
1694 if ($this->atleastoneimage) {
1695 $out .= "Content-Type: text/plain; charset=".$conf->file->character_set_client.$this->eol;
1696 //$out.= "Content-Transfer-Encoding: 7bit".$this->eol;
1697 $out .= $this->eol.($strContentAltText ? $strContentAltText : strip_tags($strContent)).$this->eol; // Add plain text message
1698 $out .= "--".$this->alternative_boundary.$this->eol;
1699 $out .= "Content-Type: multipart/related;".$this->eol." boundary=\"".$this->related_boundary."\"".$this->eol;
1700 $out .= $this->eol;
1701 $out .= "--".$this->related_boundary.$this->eol;
1702 }
1703
1704 if (!$this->atleastoneimage && $strContentAltText && getDolGlobalString('MAIN_MAIL_USE_MULTI_PART')) { // Add plain text message part before html part
1705 $out .= "Content-Type: multipart/alternative;".$this->eol." boundary=\"".$this->alternative_boundary."\"".$this->eol;
1706 $out .= $this->eol;
1707 $out .= "--".$this->alternative_boundary.$this->eol;
1708 $out .= "Content-Type: text/plain; charset=".$conf->file->character_set_client.$this->eol;
1709 //$out.= "Content-Transfer-Encoding: 7bit".$this->eol;
1710 $out .= $this->eol.$strContentAltText.$this->eol;
1711 $out .= "--".$this->alternative_boundary.$this->eol;
1712 }
1713
1714 $out .= "Content-Type: text/html; charset=".$conf->file->character_set_client.$this->eol;
1715 //$out.= "Content-Transfer-Encoding: 7bit".$this->eol; // TODO Use base64
1716 $out .= $this->eol.$strContent.$this->eol;
1717
1718 if (!$this->atleastoneimage && $strContentAltText && getDolGlobalString('MAIN_MAIL_USE_MULTI_PART')) { // Add plain text message part after html part
1719 $out .= "--".$this->alternative_boundary."--".$this->eol;
1720 }
1721 } else {
1722 $out .= "Content-Type: text/plain; charset=".$conf->file->character_set_client.$this->eol;
1723 //$out.= "Content-Transfer-Encoding: 7bit".$this->eol;
1724 $out .= $this->eol.$strContent.$this->eol;
1725 }
1726
1727 $out .= $this->eol;
1728
1729 // Encode images
1730 if ($this->atleastoneimage) {
1731 $out .= $this->write_images($this->images_encoded);
1732 // always end related and end alternative after inline images
1733 $out .= "--".$this->related_boundary."--".$this->eol;
1734 $out .= $this->eol."--".$this->alternative_boundary."--".$this->eol;
1735 $out .= $this->eol;
1736 }
1737
1738 return $out;
1739 }
1740
1741 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1751 private function write_files($filename_list, $mimetype_list, $mimefilename_list, $cidlist)
1752 {
1753 // phpcs:enable
1754 $out = '';
1755
1756 $filename_list_size = count($filename_list);
1757 for ($i = 0; $i < $filename_list_size; $i++) {
1758 if ($filename_list[$i]) {
1759 dol_syslog("CMailFile::write_files: i=$i ".$filename_list[$i]);
1760 $encoded = $this->_encode_file($filename_list[$i]);
1761 if ($encoded !== -1) {
1762 if ($mimefilename_list[$i]) {
1763 $filename_list[$i] = $mimefilename_list[$i];
1764 }
1765 if (!$mimetype_list[$i]) {
1766 $mimetype_list[$i] = "application/octet-stream";
1767 }
1768
1769 $out .= "--".$this->mixed_boundary.$this->eol;
1770 $out .= "Content-Disposition: attachment; filename=\"".$filename_list[$i]."\"".$this->eol;
1771 $out .= "Content-Type: ".$mimetype_list[$i]."; name=\"".$filename_list[$i]."\"".$this->eol;
1772 $out .= "Content-Transfer-Encoding: base64".$this->eol;
1773 $out .= "Content-Description: ".$filename_list[$i].$this->eol;
1774 if (!empty($cidlist) && is_array($cidlist) && $cidlist[$i]) {
1775 $out .= "X-Attachment-Id: ".$cidlist[$i].$this->eol;
1776 $out .= "Content-ID: <".$cidlist[$i].'>'.$this->eol;
1777 }
1778 $out .= $this->eol;
1779 $out .= $encoded;
1780 $out .= $this->eol;
1781 //$out.= $this->eol;
1782 } else {
1783 return $encoded;
1784 }
1785 }
1786 }
1787
1788 return $out;
1789 }
1790
1791
1792 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1799 public function write_images($images_list)
1800 {
1801 // phpcs:enable
1802 $out = '';
1803
1804 if (is_array($images_list)) {
1805 foreach ($images_list as $img) {
1806 dol_syslog("CMailFile::write_images: ".$img["name"]);
1807
1808 $out .= "--".$this->related_boundary.$this->eol; // always related for an inline image
1809 $out .= "Content-Type: ".$img["content_type"]."; name=\"".$img["name"]."\"".$this->eol;
1810 $out .= "Content-Transfer-Encoding: base64".$this->eol;
1811 $out .= "Content-Disposition: inline; filename=\"".$img["name"]."\"".$this->eol;
1812 $out .= "Content-ID: <".$img["cid"].">".$this->eol;
1813 $out .= $this->eol;
1814 $out .= $img["image_encoded"];
1815 $out .= $this->eol;
1816 }
1817 }
1818
1819 return $out;
1820 }
1821
1822
1823 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1831 public function check_server_port($host, $port)
1832 {
1833 // phpcs:enable
1834 global $conf;
1835
1836 $_retVal = 0;
1837 $timeout = 5; // Timeout in seconds
1838
1839 if (function_exists('fsockopen')) {
1840 $keyforsmtpserver = 'MAIN_MAIL_SMTP_SERVER';
1841 $keyforsmtpport = 'MAIN_MAIL_SMTP_PORT';
1842 $keyforsmtpid = 'MAIN_MAIL_SMTPS_ID';
1843 $keyforsmtppw = 'MAIN_MAIL_SMTPS_PW';
1844 $keyforsmtpauthtype = 'MAIN_MAIL_SMTPS_AUTH_TYPE';
1845 $keyforsmtpoauthservice = 'MAIN_MAIL_SMTPS_OAUTH_SERVICE';
1846 $keyfortls = 'MAIN_MAIL_EMAIL_TLS';
1847 $keyforstarttls = 'MAIN_MAIL_EMAIL_STARTTLS';
1848 $keyforsslseflsigned = 'MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED';
1849
1850 if (!empty($this->sendcontext)) {
1851 $smtpContextKey = strtoupper($this->sendcontext);
1852 $smtpContextSendMode = getDolGlobalString('MAIN_MAIL_SENDMODE_'.$smtpContextKey);
1853 if (!empty($smtpContextSendMode) && $smtpContextSendMode != 'default') {
1854 $keyforsmtpserver = 'MAIN_MAIL_SMTP_SERVER_'.$smtpContextKey;
1855 $keyforsmtpport = 'MAIN_MAIL_SMTP_PORT_'.$smtpContextKey;
1856 $keyforsmtpid = 'MAIN_MAIL_SMTPS_ID_'.$smtpContextKey;
1857 $keyforsmtppw = 'MAIN_MAIL_SMTPS_PW_'.$smtpContextKey;
1858 $keyforsmtpauthtype = 'MAIN_MAIL_SMTPS_AUTH_TYPE_'.$smtpContextKey;
1859 $keyforsmtpoauthservice = 'MAIN_MAIL_SMTPS_OAUTH_SERVICE_'.$smtpContextKey;
1860 $keyfortls = 'MAIN_MAIL_EMAIL_TLS_'.$smtpContextKey;
1861 $keyforstarttls = 'MAIN_MAIL_EMAIL_STARTTLS_'.$smtpContextKey;
1862 $keyforsslseflsigned = 'MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED_'.$smtpContextKey;
1863 }
1864 }
1865
1866 // If we use SSL/TLS
1867 if (getDolGlobalString($keyfortls) && function_exists('openssl_open')) {
1868 $host = 'ssl://'.$host;
1869 }
1870 // tls smtp start with no encryption
1871 //if (!empty($conf->global->MAIN_MAIL_EMAIL_STARTTLS) && function_exists('openssl_open')) $host='tls://'.$host;
1872
1873 dol_syslog("Try socket connection to host=".$host." port=".$port." timeout=".$timeout);
1874 //See if we can connect to the SMTP server
1875 $errno = 0;
1876 $errstr = '';
1877 if ($socket = @fsockopen(
1878 $host, // Host to test, IP or domain. Add ssl:// for SSL/TLS.
1879 $port, // which Port number to use
1880 $errno, // actual system level error
1881 $errstr, // and any text that goes with the error
1882 $timeout // timeout for reading/writing data over the socket
1883 )) {
1884 // Windows still does not have support for this timeout function
1885 if (function_exists('stream_set_timeout')) {
1886 stream_set_timeout($socket, $timeout, 0);
1887 }
1888
1889 dol_syslog("Now we wait for answer 220");
1890
1891 // Check response from Server
1892 if ($_retVal = $this->server_parse($socket, "220")) {
1893 $_retVal = $socket;
1894 }
1895 } else {
1896 $this->error = utf8_check('Error '.$errno.' - '.$errstr) ? 'Error '.$errno.' - '.$errstr : mb_convert_encoding('Error '.$errno.' - '.$errstr, 'UTF-8', 'ISO-8859-1');
1897 }
1898 }
1899 return $_retVal;
1900 }
1901
1902 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1911 public function server_parse($socket, $response)
1912 {
1913 // phpcs:enable
1914 $_retVal = true; // Indicates if Object was created or not
1915 $server_response = '';
1916
1917 while (substr($server_response, 3, 1) != ' ') {
1918 if (!($server_response = fgets($socket, 256))) {
1919 $this->error = "Couldn't get mail server response codes";
1920 return false;
1921 }
1922 }
1923
1924 if (!(substr($server_response, 0, 3) == $response)) {
1925 $this->error = "Ran into problems sending Mail.\r\nResponse: $server_response";
1926 $_retVal = false;
1927 }
1928
1929 return $_retVal;
1930 }
1931
1938 private function findHtmlImages($images_dir)
1939 {
1940 // Build the array of image extensions
1941 $extensions = array_keys($this->image_types);
1942
1943 // We search (into mail body this->html), if we find some strings like "... file=xxx.img"
1944 // For example when:
1945 // <img alt="" src="/viewimage.php?modulepart=medias&amp;entity=1&amp;file=image/picture.jpg" style="height:356px; width:1040px" />
1946 $matches = array();
1947 preg_match_all('/(?:"|\')([^"\']+\.('.implode('|', $extensions).'))(?:"|\')/Ui', $this->html, $matches); // If "xxx.ext" or 'xxx.ext' found
1948
1949 if (!empty($matches) && !empty($matches[1])) {
1950 $i = 0;
1951 // We are interested in $matches[1] only (the second set of parenthesis into regex)
1952 foreach ($matches[1] as $full) {
1953 $regs = array();
1954 if (preg_match('/file=([A-Za-z0-9_\-\/]+[\.]?[A-Za-z0-9]+)?$/i', $full, $regs)) { // If xxx is 'file=aaa'
1955 $img = $regs[1];
1956
1957 if (file_exists($images_dir.'/'.$img)) {
1958 // Image path in src
1959 $src = preg_quote($full, '/');
1960 // Image full path
1961 $this->html_images[$i]["fullpath"] = $images_dir.'/'.$img;
1962 // Image name
1963 $this->html_images[$i]["name"] = $img;
1964 // Content type
1965 $regext = array();
1966 if (preg_match('/^.+\.(\w{3,4})$/', $img, $regext)) {
1967 $ext = strtolower($regext[1]);
1968 $this->html_images[$i]["content_type"] = $this->image_types[$ext];
1969 }
1970 // cid
1971 $this->html_images[$i]["cid"] = dol_hash($this->html_images[$i]["fullpath"], 'md5'); // Force md5 hash (does not contain special chars)
1972 // type
1973 $this->html_images[$i]["type"] = 'cidfromurl';
1974
1975 $this->html = preg_replace("/src=\"$src\"|src='$src'/i", "src=\"cid:".$this->html_images[$i]["cid"]."\"", $this->html);
1976 }
1977 $i++;
1978 }
1979 }
1980
1981 if (!empty($this->html_images)) {
1982 $inline = array();
1983
1984 $i = 0;
1985
1986 foreach ($this->html_images as $img) {
1987 $fullpath = $images_dir.'/'.$img["name"];
1988
1989 // If duplicate images are embedded, they may show up as attachments, so remove them.
1990 if (!in_array($fullpath, $inline)) {
1991 // Read image file
1992 if ($image = file_get_contents($fullpath)) {
1993 // On garde que le nom de l'image
1994 $regs = array();
1995 preg_match('/([A-Za-z0-9_-]+[\.]?[A-Za-z0-9]+)?$/i', $img["name"], $regs);
1996 $imgName = $regs[1];
1997
1998 $this->images_encoded[$i]['name'] = $imgName;
1999 $this->images_encoded[$i]['fullpath'] = $fullpath;
2000 $this->images_encoded[$i]['content_type'] = $img["content_type"];
2001 $this->images_encoded[$i]['cid'] = $img["cid"];
2002 // Encodage de l'image
2003 $this->images_encoded[$i]["image_encoded"] = chunk_split(base64_encode($image), 68, $this->eol);
2004 $inline[] = $fullpath;
2005 }
2006 }
2007 $i++;
2008 }
2009 } else {
2010 return -1;
2011 }
2012
2013 return 1;
2014 } else {
2015 return 0;
2016 }
2017 }
2018
2026 private function findHtmlImagesIsSrcData($images_dir)
2027 {
2028 global $conf;
2029
2030 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
2031
2032 // Build the array of image extensions
2033 $extensions = array_keys($this->image_types);
2034
2035 if (empty($images_dir)) {
2036 //$images_dir = $conf->admin->dir_output.'/temp/'.uniqid('cmailfile');
2037 $images_dir = $conf->admin->dir_output.'/temp/cmailfile';
2038 }
2039
2040 if ($images_dir && !dol_is_dir($images_dir)) {
2041 dol_mkdir($images_dir, DOL_DATA_ROOT);
2042 }
2043
2044 // Uncomment this for debug
2045 /*
2046 global $dolibarr_main_data_root;
2047 $outputfile = $dolibarr_main_data_root."/dolibarr_mail.log";
2048 $fp = fopen($outputfile, "w+");
2049 fwrite($fp, $this->html);
2050 fclose($fp);
2051 */
2052
2053 // We search (into mail body this->html), if we find some strings like "... file=xxx.img"
2054 // For example when:
2055 // <img alt="" src="/src="data:image....;base64,...." />
2056 $matches = array();
2057 preg_match_all('/src="data:image\/('.implode('|', $extensions).');base64,([^"]+)"/Ui', $this->html, $matches); // If "xxx.ext" or 'xxx.ext' found
2058
2059 if (!empty($matches) && !empty($matches[1])) {
2060 if (empty($images_dir)) {
2061 // No temp directory provided, so we are not able to support conversion of data:image into physical images.
2062 $this->errors[] = 'NoTempDirProvidedInCMailConstructorSoCantConvertDataImgOnDisk';
2063 return -1;
2064 }
2065
2066 $i = count($this->html_images);
2067 foreach ($matches[1] as $key => $ext) {
2068 // We save the image to send in disk
2069 $filecontent = $matches[2][$key];
2070
2071 $cid = 'cid000'.dol_hash($filecontent, 'md5'); // The id must not change if image is same
2072
2073 $destfiletmp = $images_dir.'/'.$cid.'.'.$ext;
2074
2075 if (!dol_is_file($destfiletmp)) { // If file does not exist yet (this is the case for the first email sent with a data:image inside)
2076 dol_syslog("write the cid file ".$destfiletmp);
2077 $fhandle = @fopen($destfiletmp, 'w');
2078 if ($fhandle) {
2079 $nbofbyteswrote = fwrite($fhandle, base64_decode($filecontent));
2080 fclose($fhandle);
2081 dolChmod($destfiletmp);
2082 } else {
2083 $this->errors[] = "Failed to open file '".$destfiletmp."' for write";
2084 return -2;
2085 }
2086 }
2087
2088 if (file_exists($destfiletmp)) {
2089 // Image full path
2090 $this->html_images[$i]["fullpath"] = $destfiletmp;
2091 // Image name
2092 $this->html_images[$i]["name"] = basename($destfiletmp);
2093 // Content type
2094 $this->html_images[$i]["content_type"] = $this->image_types[strtolower($ext)];
2095 // cid
2096 $this->html_images[$i]["cid"] = $cid;
2097 // type
2098 $this->html_images[$i]["type"] = 'cidfromdata';
2099
2100 $this->html = str_replace('src="data:image/'.$ext.';base64,'.$filecontent.'"', 'src="cid:'.$this->html_images[$i]["cid"].'"', $this->html);
2101 }
2102 $i++;
2103 }
2104
2105 return 1;
2106 } else {
2107 return 0;
2108 }
2109 }
2110
2126 public static function getValidAddress($address, $format, $encode = 0, $maxnumberofemail = 0)
2127 {
2128 global $conf;
2129
2130 $ret = '';
2131
2132 $arrayaddress = (!empty($address) ? explode(',', $address) : array());
2133
2134 // Boucle sur chaque composant de l'address
2135 $i = 0;
2136 foreach ($arrayaddress as $val) {
2137 $regs = array();
2138 if (preg_match('/^(.*)<(.*)>$/i', trim($val), $regs)) {
2139 $name = trim($regs[1]);
2140 $email = trim($regs[2]);
2141 } else {
2142 $name = '';
2143 $email = trim($val);
2144 }
2145
2146 if ($email) {
2147 $i++;
2148
2149 $newemail = '';
2150 if ($format == 5) {
2151 $newemail = $name ? $name : $email;
2152 $newemail = '<a href="mailto:'.$email.'">'.$newemail.'</a>';
2153 }
2154 if ($format == 4) {
2155 $newemail = $name ? $name : $email;
2156 }
2157 if ($format == 2) {
2158 $newemail = $email;
2159 }
2160 if ($format == 1 || $format == 3) {
2161 $newemail = '<'.$email.'>';
2162 }
2163 if ($format == 0 || $format == 3) {
2164 if (getDolGlobalString('MAIN_MAIL_NO_FULL_EMAIL')) {
2165 $newemail = '<'.$email.'>';
2166 } elseif (!$name) {
2167 $newemail = '<'.$email.'>';
2168 } else {
2169 $newemail = ($format == 3 ? '"' : '').($encode ? self::encodetorfc2822($name) : $name).($format == 3 ? '"' : '').' <'.$email.'>';
2170 }
2171 }
2172
2173 $ret = ($ret ? $ret.',' : '').$newemail;
2174
2175 // Stop if we have too much records
2176 if ($maxnumberofemail && $i >= $maxnumberofemail) {
2177 if (count($arrayaddress) > $maxnumberofemail) {
2178 $ret .= '...';
2179 }
2180 break;
2181 }
2182 }
2183 }
2184
2185 return $ret;
2186 }
2187
2195 public static function getArrayAddress($address)
2196 {
2197 $ret = array();
2198
2199 $arrayaddress = explode(',', $address);
2200
2201 // Boucle sur chaque composant de l'address
2202 foreach ($arrayaddress as $val) {
2203 $regs = array();
2204 if (preg_match('/^(.*)<(.*)>$/i', trim($val), $regs)) {
2205 $name = trim($regs[1]);
2206 $email = trim($regs[2]);
2207 } else {
2208 $name = null;
2209 $email = trim($val);
2210 }
2211
2212 $ret[$email] = getDolGlobalString('MAIN_MAIL_NO_FULL_EMAIL') ? null : $name;
2213 }
2214
2215 return $ret;
2216 }
2217}
Class to send emails (with attachments or not) Usage: $mailfile = new CMailFile($subject,...
_encode_file($sourcefile)
Read a file on disk and return encoded content for emails (mode = 'mail')
write_body($msgtext)
Return email content (mode = 'mail')
__construct($subject, $to, $from, $msg, $filename_list=array(), $mimetype_list=array(), $mimefilename_list=array(), $addr_cc="", $addr_bcc="", $deliveryreceipt=0, $msgishtml=0, $errors_to='', $css='', $trackid='', $moreinheader='', $sendcontext='standard', $replyto='', $upload_dir_tmp='', $in_reply_to='', $references='')
CMailFile.
$bodyCSS
Defined background directly in body tag.
dump_mail()
Write content of a SMTP request into a dump file (mode = all) Used for debugging.
sendfile()
Send mail that was prepared by constructor.
save_dump_mail_in_err($message='')
Save content if mail is in error Used for debugging.
static encodetorfc2822($stringtoencode)
Encode subject according to RFC 2822 - http://en.wikipedia.org/wiki/MIME#Encoded-Word.
checkIfHTML($msg)
Correct an incomplete html string.
static getValidAddress($address, $format, $encode=0, $maxnumberofemail=0)
Return a formatted address string for SMTP protocol.
write_images($images_list)
Attach an image to email (mode = 'mail')
server_parse($socket, $response)
This function has been modified as provided by SirSir to allow multiline responses when using SMTP Ex...
write_smtpheaders()
Create SMTP headers (mode = 'mail')
findHtmlImagesIsSrcData($images_dir)
Seearch images with data:image format into html message.
$styleCSS
Defined css style for body background.
write_mimeheaders($filename_list, $mimefilename_list)
Create header MIME (mode = 'mail')
check_server_port($host, $port)
Try to create a socket connection.
buildCSS()
Build a css style (mode = all) into this->styleCSS and this->bodyCSS.
write_files($filename_list, $mimetype_list, $mimefilename_list, $cidlist)
Attach file to email (mode = 'mail')
static getArrayAddress($address)
Return a formatted array of address string for SMTP protocol.
findHtmlImages($images_dir)
Search images into html message and init array this->images_encoded if found.
Class to manage hooks.
Class to construct and send SMTP compliant email, even to a secure SMTP server, regardless of platfor...
archiveOrBackupFile($srcfile, $max_versions=5, $archivedir='', $suffix="v", $moveorcopy='move')
Manage backup versions for a given file, ensuring only a maximum number of versions are kept.
dol_move($srcfile, $destfile, $newmask='0', $overwriteifexists=1, $testvirus=0, $indexdatabase=1, $moreinfo=array())
Move a file into another name.
dol_is_file($pathoffile)
Return if path is a file.
dol_is_dir($folder)
Test if filename is a directory.
dol_osencode($str)
Return a string encoded into OS filesystem encoding.
dol_nl2br($stringtoencode, $nl2brmode=0, $forxml=false)
Replace CRLF in string with a HTML BR tag.
dolChmod($filepath, $newmask='')
Change mod of a file.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_string_unaccent($str)
Clean a string from all accent characters to be used as ref, login or by dol_sanitizeFileName.
ascii_check($str)
Check if a string is in ASCII.
dol_textishtml($msg, $option=0)
Return if a text is a html content.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
utf8_check($str)
Check if a string is in UTF8.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
dol_sanitizeEmail($stringtoclean)
Clean a string to use it as an Email.
getSupportedOauth2Array()
Return array of tabs to used on pages to setup cron module.
dol_hash($chain, $type='0', $nosalt=0)
Returns a hash (non reversible encryption) of a string.