Spaces:
No application file
No application file
File size: 65,713 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 |
<?php
namespace Mautic\EmailBundle\Helper;
use Doctrine\ORM\ORMException;
use Mautic\AssetBundle\Entity\Asset;
use Mautic\CoreBundle\Factory\MauticFactory;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
use Mautic\CoreBundle\Helper\InputHelper;
use Mautic\EmailBundle\EmailEvents;
use Mautic\EmailBundle\Entity\Copy;
use Mautic\EmailBundle\Entity\Email;
use Mautic\EmailBundle\Entity\Stat;
use Mautic\EmailBundle\Event\EmailSendEvent;
use Mautic\EmailBundle\Exception\InvalidEmailException;
use Mautic\EmailBundle\Form\Type\ConfigType;
use Mautic\EmailBundle\Helper\DTO\AddressDTO;
use Mautic\EmailBundle\Helper\Exception\OwnerNotFoundException;
use Mautic\EmailBundle\Mailer\Exception\BatchQueueMaxException;
use Mautic\EmailBundle\Mailer\Message\MauticMessage;
use Mautic\EmailBundle\Mailer\Transport\TokenTransportInterface;
use Mautic\EmailBundle\MonitoredEmail\Mailbox;
use Mautic\LeadBundle\Entity\Lead;
use Psr\Log\LoggerInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\Mailer\Exception\TransportExceptionInterface;
use Symfony\Component\Mailer\MailerInterface;
use Symfony\Component\Mailer\Transport\TransportInterface;
use Symfony\Component\Mime\Address;
use Symfony\Component\Mime\Exception\RfcComplianceException;
use Symfony\Component\Mime\Header\HeaderInterface;
use Symfony\Component\Mime\Header\UnstructuredHeader;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Component\Routing\RouterInterface;
use Twig\Environment;
class MailHelper
{
public const QUEUE_RESET_TO = 'RESET_TO';
public const QUEUE_FULL_RESET = 'FULL_RESET';
public const QUEUE_DO_NOTHING = 'DO_NOTHING';
public const QUEUE_NOTHING_IF_FAILED = 'IF_FAILED';
public const QUEUE_RETURN_ERRORS = 'RETURN_ERRORS';
public const EMAIL_TYPE_TRANSACTIONAL = 'transactional';
public const EMAIL_TYPE_MARKETING = 'marketing';
/**
* @var TransportInterface
*/
protected $transport;
/**
* @var Environment
*/
protected $twig;
protected ?EventDispatcherInterface $dispatcher = null;
/**
* @var bool|MauticMessage
*/
public $message;
protected ?AddressDTO $from = null;
protected ?AddressDTO $systemFrom = null;
protected ?string $replyTo = null;
protected ?string $systemReplyTo = null;
/**
* @var string
*/
protected $returnPath;
/**
* @var array
*/
protected $errors = [];
/**
* @var array|Lead
*/
protected $lead;
/**
* @var bool
*/
protected $internalSend = false;
/**
* @var null
*/
protected $idHash;
/**
* @var bool
*/
protected $idHashState = true;
/**
* @var bool
*/
protected $appendTrackingPixel = false;
/**
* @var array
*/
protected $source = [];
/**
* @var Email|null
*/
protected $email;
protected ?string $emailType = null;
/**
* @var array
*/
protected $globalTokens = [];
/**
* @var array
*/
protected $eventTokens = [];
/**
* Tells the helper that the transport supports tokenized emails (likely HTTP API).
*
* @var bool
*/
protected $tokenizationEnabled = false;
/**
* Use queue mode when sending email through this mailer; this requires a transport that supports tokenization and the use of queue/flushQueue.
*
* @var bool
*/
protected $queueEnabled = false;
/**
* @var array
*/
protected $queuedRecipients = [];
/**
* @var array
*/
public $metadata = [];
/**
* @var string
*/
protected $subject = '';
/**
* @var string
*/
protected $plainText = '';
/**
* @var bool
*/
protected $plainTextSet = false;
/**
* @var array
*/
protected $assets = [];
/**
* @var array
*/
protected $attachedAssets = [];
/**
* @var array
*/
protected $assetStats = [];
/**
* @var array
*/
protected $headers = [];
/**
* @var array
*/
protected $body = [
'content' => '',
'contentType' => 'text/html',
'charset' => null,
];
/**
* Cache for lead owners.
*
* @var array
*/
protected static $leadOwners = [];
/**
* @var bool
*/
protected $fatal = false;
protected bool $skip = false;
/**
* Simply a md5 of the content so that event listeners can easily determine if the content has been changed.
*/
private ?string $contentHash = null;
private array $copies = [];
private array $embedImagesReplaces = [];
public function __construct(
private MauticFactory $factory,
private MailerInterface $mailer,
private FromEmailHelper $fromEmailHelper,
private CoreParametersHelper $coreParametersHelper,
private Mailbox $mailbox,
private LoggerInterface $logger,
private MailHashHelper $mailHashHelper,
private RouterInterface $router
) {
$this->transport = $this->getTransport();
$this->returnPath = $coreParametersHelper->get('mailer_return_path');
$systemFromEmail = (string) $coreParametersHelper->get('mailer_from_email');
$systemReplyToEmail = $coreParametersHelper->get('mailer_reply_to_email');
$systemFromName = $this->cleanName(
$coreParametersHelper->get('mailer_from_name')
);
$this->setDefaultFrom(false, new AddressDTO($systemFromEmail, $systemFromName));
$this->setDefaultReplyTo($systemReplyToEmail, $this->from);
// Check if batching is supported by the transport
if ($this->transport instanceof TokenTransportInterface) {
$this->tokenizationEnabled = true;
}
$this->message = $this->getMessageInstance();
}
/**
* Mirrors previous MauticFactory functionality.
*
* @param bool $cleanSlate
*
* @return $this
*/
public function getMailer($cleanSlate = true)
{
$this->reset($cleanSlate);
return $this;
}
/**
* Mirrors previous MauticFactory functionality.
*
* @param bool $cleanSlate
*
* @return $this
*/
public function getSampleMailer($cleanSlate = true)
{
return $this->getMailer($cleanSlate);
}
/**
* Send the message.
*
* @param bool $dispatchSendEvent
* @param bool $isQueueFlush (a tokenized/batch send via API such as Mandrill)
*
* @return bool
*/
public function send($dispatchSendEvent = false, $isQueueFlush = false)
{
if ($this->tokenizationEnabled && !empty($this->queuedRecipients) && !$isQueueFlush) {
// This transport uses tokenization and queue()/flushQueue() was not used therefore use them in order
// properly populate metadata for this transport
if ($result = $this->queue($dispatchSendEvent)) {
$result = $this->flushQueue(['To', 'Cc', 'Bcc']);
}
return $result;
}
// Set from email
if (!$isQueueFlush) {
$this->setFromForSingleMessage();
$this->setReplyToForSingleMessage($this->email);
} // from is set in flushQueue
if (empty($this->message->getReplyTo()) && !empty($this->getReplyTo())) {
$this->setMessageReplyTo($this->getReplyTo());
}
// Set system return path if applicable
if (!$isQueueFlush && ($bounceEmail = $this->generateBounceEmail())) {
$this->message->returnPath($bounceEmail);
} elseif (!empty($this->returnPath)) {
$this->message->returnPath($this->returnPath);
}
$this->dispatchPreSendEvent();
if (empty($this->fatal)) {
if (!$isQueueFlush) {
// Search/replace tokens if this is not a queue flush
// Generate tokens from listeners
if ($dispatchSendEvent) {
$this->dispatchSendEvent();
}
// Queue an asset stat if applicable
$this->queueAssetDownloadEntry();
}
$this->message->subject($this->subject);
// Only set body if not empty or if plain text is empty - this ensures an empty HTML body does not show for
// messages only with plain text
if (!empty($this->body['content']) || empty($this->plainText)) {
$this->message->html($this->body['content'], $this->body['charset'] ?? 'utf-8');
}
$this->setMessagePlainText();
$this->setMessageHeaders();
if (!$isQueueFlush) {
// Replace token content
$tokens = $this->getTokens();
if ($ownerSignature = $this->fromEmailHelper->getSignature()) {
$tokens['{signature}'] = $ownerSignature;
}
// Set metadata if applicable
foreach ($this->queuedRecipients as $email => $name) {
$this->message->addMetadata($email, $this->buildMetadata($name, $tokens));
}
// Replace tokens
$search = array_keys($tokens);
$replace = $tokens;
self::searchReplaceTokens($search, $replace, $this->message);
}
if (true === $this->coreParametersHelper->get('mailer_convert_embed_images')) {
$this->convertEmbedImages();
}
// Attach assets
/** @var Asset $asset */
foreach ($this->assets as $asset) {
if (!in_array($asset->getId(), $this->attachedAssets)) {
$this->attachedAssets[] = $asset->getId();
$this->attachFile(
$asset->getFilePath(),
$asset->getOriginalFileName(),
$asset->getMime()
);
}
}
try {
if (!$this->skip) {
$this->mailer->send($this->message);
}
$this->skip = false;
} catch (TransportExceptionInterface $exception) {
/*
The nature of symfony/mailer is working with transactional emails only
if a message fails to send, all the contacts on that message will be considered failed
*/
$failures = $this->tokenizationEnabled ? array_keys($this->message->getMetadata()) : [];
// Exception encountered when sending so all recipients are considered failures
$this->errors['failures'] = array_unique(
array_merge(
$failures,
array_keys((array) $this->message->getTo()),
array_keys((array) $this->message->getCc()),
array_keys((array) $this->message->getBcc())
)
);
$this->logError($exception->getMessage());
}
}
$error = empty($this->errors);
if (!$isQueueFlush) {
$this->createAssetDownloadEntries();
} // else handled in flushQueue
return $error;
}
/**
* If batching is supported and enabled, the message will be queued and will on be sent upon flushQueue().
* Otherwise, the message will be sent to the transport immediately.
*
* @param bool $dispatchSendEvent
* @param string $returnMode What should happen post send/queue to $this->message after the email send is attempted.
* Options are:
* RESET_TO resets the to recipients and resets errors
* FULL_RESET creates a new MauticMessage instance and resets errors
* DO_NOTHING leaves the current errors array and MauticMessage instance intact
* NOTHING_IF_FAILED leaves the current errors array MauticMessage instance intact if it fails, otherwise reset_to
* RETURN_ERROR return an array of [success, $errors]; only one applicable if message is queued
*
* @return bool|array
*/
public function queue($dispatchSendEvent = false, $returnMode = self::QUEUE_RESET_TO)
{
if ($this->tokenizationEnabled) {
// Dispatch event to get custom tokens from listeners
if ($dispatchSendEvent) {
$this->dispatchSendEvent();
}
// Metadata has to be set for each recipient
foreach ($this->queuedRecipients as $email => $name) {
$from = $this->fromEmailHelper->getFromAddressConsideringOwner($this->getFrom(), $this->lead, $this->email);
$fromAddress = $from->getEmail();
$tokens = $this->getTokens();
$tokens['{signature}'] = $this->fromEmailHelper->getSignature();
if (!isset($this->metadata[$fromAddress])) {
$this->metadata[$fromAddress] = [
'from' => $from,
'contacts' => [],
];
}
$this->metadata[$fromAddress]['contacts'][$email] = $this->buildMetadata($name, $tokens);
}
// Reset recipients
$this->queuedRecipients = [];
// Assume success
return (self::QUEUE_RETURN_ERRORS) ? [true, []] : true;
} else {
$success = $this->send($dispatchSendEvent);
// Reset the message for the next
$this->queuedRecipients = [];
// Reset message
switch (strtoupper($returnMode)) {
case self::QUEUE_RESET_TO:
$this->message->to();
$this->clearErrors();
break;
case self::QUEUE_NOTHING_IF_FAILED:
if ($success) {
$this->message->to();
$this->clearErrors();
}
break;
case self::QUEUE_FULL_RESET:
$this->message = $this->getMessageInstance();
$this->attachedAssets = [];
$this->clearErrors();
break;
case self::QUEUE_RETURN_ERRORS:
$this->message->to();
$errors = $this->getErrors();
$this->clearErrors();
return [$success, $errors];
case self::QUEUE_DO_NOTHING:
default:
// Nada
break;
}
return $success;
}
}
/**
* Send batched mail to mailer.
*
* @param array $resetEmailTypes Array of email types to clear after flusing the queue
*
* @return bool
*/
public function flushQueue($resetEmailTypes = ['To', 'Cc', 'Bcc'])
{
// Assume true unless there was a fatal error configuring the mailer because if tokenizationEnabled is false, the send happened in queue()
$flushed = empty($this->fatal);
if ($this->tokenizationEnabled && count($this->metadata) && $flushed) {
$errors = $this->errors;
$errors['failures'] = [];
$flushed = false;
foreach ($this->metadata as $metadatum) {
// Whatever is in the message "to" should be ignored as we will send to the contacts grouped by from addresses
// This prevents mailers such as sparkpost from sending duplicates to contacts
$this->message->to();
$this->errors = [];
$email = $this->getEmail();
if ($email && $email->getUseOwnerAsMailer()) {
$this->setFrom($metadatum['from']->getEmail(), $metadatum['from']->getName());
$this->setMessageFrom(new AddressDTO($metadatum['from']->getEmail(), $metadatum['from']->getName()));
} else {
$this->setMessageFrom($this->getFrom());
}
foreach ($metadatum['contacts'] as $email => $contact) {
$this->message->addMetadata($email, $contact);
// Add asset stats if applicable
if (!empty($contact['leadId'])) {
$this->queueAssetDownloadEntry($email, $contact);
}
$this->message->to(new Address($email, $contact['name'] ?? ''));
}
$flushed = $this->send(false, true);
// Merge errors
if (isset($this->errors['failures'])) {
$errors['failures'] = array_merge($errors['failures'], $this->errors['failures']);
unset($this->errors['failures']);
}
if (!empty($this->errors)) {
$errors = array_merge($errors, $this->errors);
}
// Clear metadata for the previous recipients
$this->message->clearMetadata();
}
$this->errors = $errors;
// Clear queued to recipients
$this->queuedRecipients = [];
$this->metadata = [];
}
foreach ($resetEmailTypes as $type) {
$this->message->{$type}();
}
return $flushed;
}
/**
* Resets the mailer.
*
* @param bool $cleanSlate
*/
public function reset($cleanSlate = true): void
{
$this->eventTokens = [];
$this->queuedRecipients = [];
$this->errors = [];
$this->lead = null;
$this->idHash = null;
$this->contentHash = null;
$this->internalSend = false;
$this->fatal = false;
$this->idHashState = true;
if ($cleanSlate) {
$this->appendTrackingPixel = false;
$this->queueEnabled = false;
$this->from = $this->getSystemFrom();
$this->replyTo = $this->getSystemReplyTo();
$this->headers = [];
$this->source = [];
$this->assets = [];
$this->globalTokens = [];
$this->attachedAssets = [];
$this->email = null;
$this->copies = [];
$this->message = $this->getMessageInstance();
$this->subject = '';
$this->plainText = '';
$this->plainTextSet = false;
$this->body = [
'content' => '',
'contentType' => 'text/html',
'charset' => null,
];
}
}
/**
* Search and replace tokens
* Adapted from \Swift_Plugins_DecoratorPlugin.
*
* @param array $search
* @param array $replace
*/
public static function searchReplaceTokens($search, $replace, MauticMessage &$message): void
{
// Body
$body = $message->getHtmlBody();
$bodyReplaced = str_ireplace($search, $replace, (string) $body, $updated);
if ($updated) {
$message->html($bodyReplaced);
}
unset($body, $bodyReplaced);
// Subject
$subject = $message->getSubject();
$bodyReplaced = str_ireplace($search, $replace, $subject, $updated);
if ($updated) {
$message->subject($bodyReplaced);
}
unset($subject, $bodyReplaced);
// Headers
/** @var HeaderInterface $header */
foreach ($message->getHeaders()->all() as $header) {
// It only makes sense to tokenize headers that can be interpreted as text.
if (!$header instanceof UnstructuredHeader) {
continue;
}
$headerBody = $header->getBody();
$bodyReplaced = str_ireplace($search, $replace, $headerBody);
$header->setBody($bodyReplaced);
}
// Parts (plaintext)
$textBody = $message->getTextBody() ?? '';
$bodyReplaced = str_ireplace($search, $replace, $textBody);
if ($textBody != $bodyReplaced) {
$textBody = strip_tags($bodyReplaced);
$message->text($textBody);
}
}
public static function getBlankPixel(): string
{
return 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=';
}
/**
* Add an attachment to email.
*
* @param string $filePath
* @param string $fileName
* @param string $contentType
* @param bool $inline
*/
public function attachFile($filePath, $fileName = null, $contentType = null, $inline = false): void
{
if (true === $inline) {
$this->message->embedFromPath($filePath, $fileName, $contentType);
return;
}
$this->message->attachFromPath($filePath, $fileName, $contentType);
}
/**
* @param int|Asset $asset
*/
public function attachAsset($asset): void
{
$model = $this->factory->getModel('asset');
if (!$asset instanceof Asset) {
$asset = $model->getEntity($asset);
if (null == $asset) {
return;
}
}
if ($asset->isPublished()) {
$asset->setUploadDir($this->factory->getParameter('upload_dir'));
$this->assets[$asset->getId()] = $asset;
}
}
/**
* Use a template as the body.
*
* @param string $template
* @param array $vars
* @param bool $returnContent
*
* @return void|string
*/
public function setTemplate($template, $vars = [], $returnContent = false, $charset = null)
{
if (null == $this->twig) {
$this->twig = $this->factory->getTwig();
}
$content = $this->twig->render($template, $vars);
unset($vars);
if ($returnContent) {
return $content;
}
$this->setBody($content, 'text/html', $charset);
unset($content);
}
public function setSubject($subject): void
{
$this->subject = $subject;
}
/**
* @return string
*/
public function getSubject()
{
return $this->subject;
}
/**
* Set a plain text part.
*/
public function setPlainText($content): void
{
$this->plainText = $content;
// Update the identifier for the content
$this->contentHash = md5($this->body['content'].$this->plainText);
}
/**
* @return string
*/
public function getPlainText()
{
return $this->plainText;
}
/**
* Set plain text for $this->message, replacing if necessary.
*/
protected function setMessagePlainText()
{
if ($this->tokenizationEnabled && $this->plainTextSet) {
// No need to find and replace since tokenization happens at the transport level
return;
}
$this->message->text($this->plainText);
$this->plainTextSet = true;
}
/**
* @param string $contentType
* @param bool $ignoreTrackingPixel
*/
public function setBody($content, $contentType = 'text/html', $charset = null, $ignoreTrackingPixel = false): void
{
if (!$ignoreTrackingPixel && $this->coreParametersHelper->get('mailer_append_tracking_pixel')) {
// Append tracking pixel
$trackingImg = '<img height="1" width="1" src="{tracking_pixel}" alt="" />';
if (str_contains((string) $content, '</body>')) {
$content = str_replace('</body>', $trackingImg.'</body>', $content);
} else {
$content .= $trackingImg;
}
}
// Update the identifier for the content
$this->contentHash = md5($content.$this->plainText);
$this->body = [
'content' => $content,
'contentType' => $contentType,
'charset' => $charset,
];
}
private function convertEmbedImages(): void
{
$content = $this->message->getHtmlBody();
$matches = [];
$content = strtr($content, $this->embedImagesReplaces);
$tokens = $this->getTokens();
if (preg_match_all('/<img.+?src=[\"\'](.+?)[\"\'].*?>/i', $content, $matches) > 0) {
foreach ($matches[1] as $match) {
// skip items that already embedded, or have token {tracking_pixel}
if (str_contains($match, 'cid:') || str_contains($match, '{tracking_pixel}') || array_key_exists($match, $this->embedImagesReplaces)) {
continue;
}
// skip images with tracking pixel that are already replaced.
if (isset($tokens['{tracking_pixel}']) && $match === $tokens['{tracking_pixel}']) {
continue;
}
$path = $match;
// if the path contains the site url, make it an absolute path, so it can be fetched.
if (str_starts_with($match, $this->coreParametersHelper->get('site_url'))) {
$path = str_replace($this->coreParametersHelper->get('site_url'), '', $match);
$path = $this->factory->getSystemPath('root', true).$path;
}
if ($imageContent = file_get_contents($path)) {
$this->message->embed($imageContent, md5($match));
$this->embedImagesReplaces[$match] = 'cid:'.md5($match);
}
}
$content = strtr($content, $this->embedImagesReplaces);
}
$this->message->html($content);
}
/**
* Get a copy of the raw body.
*
* @return mixed
*/
public function getBody()
{
return $this->body['content'];
}
/**
* Return the content identifier.
*
* @return string
*/
public function getContentHash()
{
return $this->contentHash;
}
/**
* Set to address(es).
*
* @return bool
*/
public function setTo($addresses, $name = null)
{
$name = $this->cleanName($name);
if (!is_array($addresses)) {
$addresses = [$addresses => $name];
} elseif (0 === array_keys($addresses)[0]) {
// We need an array of $email => $name pairs
$addresses = array_reduce($addresses, function ($address, $item) use ($name) {
$address[$item] = $name;
return $address;
}, []);
}
$this->checkBatchMaxRecipients(count($addresses));
// Convert to array of Address objects
$toAddresses = array_map(fn (string $address, ?string $name): Address => new Address($address, $name ?? ''), array_keys($addresses), $addresses);
try {
$this->message->to(...$toAddresses);
$this->queuedRecipients = array_merge($this->queuedRecipients, $addresses);
return true;
} catch (\Exception $e) {
$this->logError($e, 'to');
return false;
}
}
/**
* Add to address.
*
* @param string $address
* @param string|null $name
*
* @return bool
*/
public function addTo($address, $name = null)
{
$this->checkBatchMaxRecipients();
try {
$this->message->addTo((new AddressDTO($address, $name))->toMailerAddress());
$this->queuedRecipients[$address] = $name;
return true;
} catch (\Exception $e) {
$this->logError($e, 'to');
return false;
}
}
/**
* Set CC address(es).
*
* @param array<string,?string> $addresses
* @param ?string $name
*
* //TODO: there is a bug here, the name is not passed in CC nor in the array of addresses, we do not handle names for CC
*
* @return bool
*/
public function setCc($addresses, $name = null)
{
$this->checkBatchMaxRecipients(count($addresses), 'cc');
try {
$ccAddresses = [];
// The email addresses are stored in the array keys not the values
// The name of the CC is passed in the function and not in the array
foreach ($addresses as $address => $noName) {
$ccAddresses[] = (new AddressDTO($address, $name))->toMailerAddress();
}
$this->message->cc(...$ccAddresses);
return true;
} catch (\Exception $e) {
$this->logError($e, 'cc');
return false;
}
}
/**
* Add cc address.
*
* @param string $address
* @param ?string $name
*
* @return bool
*/
public function addCc($address, $name = null)
{
$this->checkBatchMaxRecipients(1, 'cc');
try {
$this->message->addCc((new AddressDTO($address, $name ?? ''))->toMailerAddress());
return true;
} catch (\Exception $e) {
$this->logError($e, 'cc');
return false;
}
}
/**
* Set BCC address(es).
*
* @param array<string,?string> $addresses
* @param ?string $name
*
* //TODO: same bug for the name as the one we have in setCc
*
* @return bool
*/
public function setBcc($addresses, $name = null)
{
$this->checkBatchMaxRecipients(count($addresses), 'bcc');
try {
$bccAddresses = [];
// The email addresses are stored in the array keys not the values
// The name of the Bcc is passed in the function and not in the array
foreach ($addresses as $address => $noName) {
$bccAddresses[] = (new AddressDTO($address, $name))->toMailerAddress();
}
$this->message->bcc(...$bccAddresses);
return true;
} catch (\Exception $e) {
$this->logError($e, 'bcc');
return false;
}
}
/**
* Add bcc address.
*
* @param string $address
* @param ?string $name
*
* @return bool
*/
public function addBcc($address, $name = null)
{
$this->checkBatchMaxRecipients(1, 'bcc');
try {
$this->message->addBcc((new AddressDTO($address, $name))->toMailerAddress());
return true;
} catch (\Exception $e) {
$this->logError($e, 'bcc');
return false;
}
}
/**
* @param int $toBeAdded
* @param string $type
*
* @throws BatchQueueMaxException
*/
protected function checkBatchMaxRecipients($toBeAdded = 1, $type = 'to')
{
if ($this->queueEnabled && $this->transport instanceof TokenTransportInterface) {
// Check if max batching has been hit
$maxAllowed = $this->transport->getMaxBatchLimit();
if ($maxAllowed > 0) {
$currentCount = $this->transport->getBatchRecipientCount($this->message, $toBeAdded, $type);
if ($currentCount > $maxAllowed) {
throw new BatchQueueMaxException();
}
}
}
}
/**
* Set reply to address(es) for this mailer instance.
*
* @param array<string>|string $addresses
* @param string $name
*/
public function setReplyTo($addresses, $name = null): void
{
$this->replyTo = $addresses;
}
/**
* Set Reply to for the current message we are sending. Can be in the middle of the sending loop.
*/
private function setMessageReplyTo(string $addresses, string $name = null): void
{
if (str_contains($addresses, ',')) {
$addresses = explode(',', $addresses);
}
try {
foreach ((array) $addresses as $address) {
$this->message->replyTo((new AddressDTO($address, $name))->toMailerAddress());
}
} catch (\Exception $e) {
$this->logError($e, 'reply to');
}
}
/**
* Set a custom return path.
*
* @param string $address
*/
public function setReturnPath($address): void
{
try {
$this->message->returnPath($address);
} catch (\Exception $e) {
$this->logError($e, 'return path');
}
}
/**
* Sets FROM for the mailer which can overwrite the system default.
*
* @param string|array $fromEmail
* @param string $fromName
*/
public function setFrom($fromEmail, $fromName = null): void
{
if (is_array($fromEmail)) {
$this->from = AddressDTO::fromAddressArray($fromEmail);
$this->from->setName($fromName);
} else {
$this->from = new AddressDTO($fromEmail, $fromName);
}
}
/**
* Sets FROM for the concreste message that we are currently sending. Can be in the middle of the loop of sending.
*/
private function setMessageFrom(AddressDTO $from): void
{
try {
$this->message->from($from->toMailerAddress());
} catch (\Exception $e) {
$this->logError($e, 'from');
}
}
/**
* @return string|null
*/
public function getIdHash()
{
return $this->idHash;
}
/**
* @param string|null $idHash
* @param bool $statToBeGenerated Pass false if a stat entry is not to be created
*/
public function setIdHash($idHash = null, $statToBeGenerated = true): void
{
if (null === $idHash) {
$idHash = str_replace('.', '', uniqid('', true));
}
$this->idHash = $idHash;
$this->idHashState = $statToBeGenerated;
// Append pixel to body before send
$this->appendTrackingPixel = true;
// Add the trackingID to the $message object in order to update the stats if the email failed to send
$this->message->updateLeadIdHash($idHash);
}
/**
* @return array|Lead
*/
public function getLead()
{
return $this->lead;
}
/**
* @param array|Lead $lead
*/
public function setLead($lead, $interalSend = false): void
{
$this->lead = $lead;
$this->internalSend = $interalSend;
}
/**
* Check if this is not being send directly to the lead.
*
* @return bool
*/
public function isInternalSend()
{
return $this->internalSend;
}
/**
* @return array
*/
public function getSource()
{
return $this->source;
}
/**
* @param array $source
*/
public function setSource($source): void
{
$this->source = $source;
}
public function getEmailType(): ?string
{
return $this->emailType;
}
public function setEmailType(?string $emailType): void
{
$this->emailType = $emailType;
}
/**
* @return Email|null
*/
public function getEmail()
{
return $this->email;
}
/**
* @param bool $allowBcc Honor BCC if set in email
* @param array $slots Slots configured in theme
* @param array $assetAttachments Assets to send
* @param bool $ignoreTrackingPixel Do not append tracking pixel HTML
*
* @return bool Returns false if there were errors with the email configuration
*/
public function setEmail(Email $email, $allowBcc = true, $slots = [], $assetAttachments = [], $ignoreTrackingPixel = false): bool
{
if ($this->coreParametersHelper->get(ConfigType::MINIFY_EMAIL_HTML)) {
$email->setCustomHtml(InputHelper::minifyHTML($email->getCustomHtml()));
}
$this->email = $email;
$subject = $email->getSubject();
// Set message settings from the email
$this->setSubject($subject);
if ($allowBcc) {
$bccAddress = $email->getBccAddress();
if (!empty($bccAddress)) {
$addresses = array_fill_keys(array_map('trim', explode(',', $bccAddress)), null);
foreach ($addresses as $bccAddress => $name) {
$this->addBcc($bccAddress, $name);
}
}
}
if ($plainText = $email->getPlainText()) {
$this->setPlainText($plainText);
}
$template = $email->getTemplate();
$customHtml = $email->getCustomHtml();
// Process emails created by Mautic v1
if (empty($customHtml) && $template) {
if (empty($slots)) {
$slots = $this->factory->getTheme($template)->getSlots('email');
}
if (isset($slots[$template])) {
$slots = $slots[$template];
}
$this->processSlots($slots, $email);
$logicalName = $this->factory->getHelper('theme')->checkForTwigTemplate('@themes/'.$template.'/html/email.html.twig');
$customHtml = $this->setTemplate($logicalName, [
'slots' => $slots,
'content' => $email->getContent(),
'email' => $email,
'template' => $template,
], true);
}
$this->setBody($customHtml, 'text/html', null, $ignoreTrackingPixel);
// Reset attachments
$this->assets = $this->attachedAssets = [];
if (empty($assetAttachments)) {
if ($assets = $email->getAssetAttachments()) {
foreach ($assets as $asset) {
$this->attachAsset($asset);
}
}
} else {
foreach ($assetAttachments as $asset) {
$this->attachAsset($asset);
}
}
// Set custom headers
if ($headers = $email->getHeaders()) {
// HTML decode headers
$headers = array_map('html_entity_decode', $headers);
foreach ($headers as $name => $value) {
$this->addCustomHeader($name, $value);
}
}
return empty($this->errors);
}
/**
* Set custom headers.
*
* @param bool $merge
*/
public function setCustomHeaders(array $headers, $merge = true): void
{
if ($merge) {
$this->headers = array_merge($this->headers, $headers);
return;
}
$this->headers = $headers;
}
public function addCustomHeader($name, $value): void
{
$this->headers[$name] = $value;
}
public function getCustomHeaders(): array
{
$headers = array_merge($this->headers, $this->getSystemHeaders());
// Personal and transactional emails do not contain unsubscribe header
$email = $this->getEmail();
if (empty($email) || self::EMAIL_TYPE_TRANSACTIONAL === $this->getEmailType()) {
return $headers;
}
$listUnsubscribeHeader = $this->getUnsubscribeHeader();
if ($listUnsubscribeHeader) {
if (!empty($headers['List-Unsubscribe'])) {
if (!str_contains($headers['List-Unsubscribe'], $listUnsubscribeHeader)) {
// Ensure Mautic's is always part of this header
$headers['List-Unsubscribe'] = $listUnsubscribeHeader.','.$headers['List-Unsubscribe'];
}
} else {
$headers['List-Unsubscribe'] = $listUnsubscribeHeader;
}
$headers['List-Unsubscribe-Post'] = 'List-Unsubscribe=One-Click';
}
return $headers;
}
/**
* @return bool|string
*/
private function getUnsubscribeHeader()
{
if ($this->idHash) {
$lead = $this->getLead();
$toEmail = null;
if (is_array($lead) && array_key_exists('email', $lead) && is_string($lead['email'])) {
$toEmail = $lead['email'];
} elseif ($lead instanceof Lead && is_string($lead->getEmail())) {
$toEmail = $lead->getEmail();
}
if ($toEmail) {
$unsubscribeHash = $this->mailHashHelper->getEmailHash($toEmail);
$url = $this->router->generate('mautic_email_unsubscribe',
['idHash' => $this->idHash, 'urlEmail' => $toEmail, 'secretHash' => $unsubscribeHash],
UrlGeneratorInterface::ABSOLUTE_URL
);
} else {
$url = $this->router->generate('mautic_email_unsubscribe',
['idHash' => $this->idHash],
UrlGeneratorInterface::ABSOLUTE_URL
);
}
return "<$url>";
}
if (!empty($this->queuedRecipients) || !empty($this->lead)) {
return '<{unsubscribe_url}>';
}
return false;
}
/**
* Append tokens.
*/
public function addTokens(array $tokens): void
{
$this->globalTokens = array_merge($this->globalTokens, $tokens);
}
public function setTokens(array $tokens): void
{
$this->globalTokens = $tokens;
}
/**
* @return mixed[]
*/
public function getTokens(): array
{
$tokens = array_merge($this->globalTokens, $this->eventTokens);
// Include the tracking pixel token as it's auto appended to the body
if ($this->appendTrackingPixel) {
$tokens['{tracking_pixel}'] = $this->router->generate(
'mautic_email_tracker',
[
'idHash' => $this->idHash,
],
UrlGeneratorInterface::ABSOLUTE_URL
);
} else {
$tokens['{tracking_pixel}'] = self::getBlankPixel();
}
return $tokens;
}
/**
* @return array
*/
public function getGlobalTokens()
{
return $this->globalTokens;
}
/**
* Parses html into basic plaintext.
*
* @param string $content
*/
public function parsePlainText($content = null): void
{
if (null == $content) {
if (!$content = $this->message->getHtmlBody()) {
$content = $this->body['content'];
}
}
$request = $this->factory->getRequest();
$parser = new PlainTextHelper([
'base_url' => $request->getSchemeAndHttpHost().$request->getBasePath(),
]);
$this->plainText = $parser->setHtml($content)->getText();
}
/**
* Enables queue mode if the transport supports tokenization.
*
* @param bool $enabled
*/
public function enableQueue($enabled = true): void
{
if ($this->tokenizationEnabled) {
$this->queueEnabled = $enabled;
}
}
/**
* Dispatch send event to generate tokens.
*/
public function dispatchSendEvent(): void
{
if (null == $this->dispatcher) {
$this->dispatcher = $this->factory->getDispatcher();
}
$event = new EmailSendEvent($this);
$this->dispatcher->dispatch($event, EmailEvents::EMAIL_ON_SEND);
$this->eventTokens = array_merge($this->eventTokens, $event->getTokens(false));
unset($event);
}
/**
* Log exception.
*/
protected function logError($error, $context = null)
{
if ($error instanceof \Exception) {
$exceptionContext = ['exception' => $error];
$errorMessage = $error->getMessage();
$error = ('dev' === MAUTIC_ENV) ? (string) $error : $errorMessage;
// Clean up the error message
$errorMessage = trim(preg_replace('/(.*?)Log data:(.*)$/is', '$1', $errorMessage));
$this->fatal = true;
} else {
$exceptionContext = [];
$errorMessage = trim($error);
}
if ($context) {
$error .= " ($context)";
if ('send' === $context) {
$error .= '; '.implode(', ', $this->errors['failures']);
}
}
$this->errors[] = $errorMessage;
$this->logger->log('error', '[MAIL ERROR] '.$error, $exceptionContext);
}
/**
* Get list of errors.
*
* @param bool $reset Resets the error array in preparation for the next mail send or else it'll fail
*
* @return array
*/
public function getErrors($reset = true)
{
$errors = $this->errors;
if ($reset) {
$this->clearErrors();
}
return $errors;
}
/**
* Clears the errors from a previous send.
*/
public function clearErrors(): void
{
$this->errors = [];
$this->fatal = false;
}
/**
* @return TransportInterface
*/
public function getTransport()
{
$reflectedMailer = new \ReflectionClass($this->mailer);
$reflectedTransports = $reflectedMailer->getProperty('transport');
$reflectedTransports->setAccessible(true);
$allTransports = $reflectedTransports->getValue($this->mailer);
$reflectedTransports = new \ReflectionClass($allTransports);
$reflectedTransport = $reflectedTransports->getProperty('transports');
$reflectedTransport->setAccessible(true);
$currentTransport = $reflectedTransport->getValue($allTransports);
return $currentTransport['main'];
}
/**
* Creates a download stat for the asset.
*/
protected function createAssetDownloadEntries()
{
// Nothing was sent out so bail
if ($this->fatal || empty($this->assetStats)) {
return;
}
if (isset($this->errors['failures'])) {
// Remove the failures from the asset queue
foreach ($this->errors['failures'] as $failed) {
unset($this->assetStats[$failed]);
}
}
// Create a download entry if there is an Asset attachment
if (!empty($this->assetStats)) {
/** @var \Mautic\AssetBundle\Model\AssetModel $assetModel */
$assetModel = $this->factory->getModel('asset');
foreach ($this->assets as $asset) {
foreach ($this->assetStats as $stat) {
$assetModel->trackDownload(
$asset,
null,
200,
$stat
);
}
$assetModel->upDownloadCount($asset, count($this->assetStats), true);
}
}
// Reset the stat
$this->assetStats = [];
}
/**
* Queues the details to note if a lead received an asset if no errors are generated.
*/
protected function queueAssetDownloadEntry($contactEmail = null, array $metadata = null)
{
if ($this->internalSend || empty($this->assets)) {
return;
}
if (null === $contactEmail) {
if (!$this->lead) {
return;
}
$contactEmail = $this->lead['email'];
$contactId = $this->lead['id'];
$emailId = $this->email->getId();
$idHash = $this->idHash;
} else {
$contactId = $metadata['leadId'];
$emailId = $metadata['emailId'];
$idHash = $metadata['hashId'];
}
$this->assetStats[$contactEmail] = [
'lead' => $contactId,
'email' => $emailId,
'source' => ['email', $emailId],
'tracking_id' => $idHash,
];
}
/**
* Returns if the mailer supports and is in tokenization mode.
*
* @return bool
*/
public function inTokenizationMode()
{
return $this->tokenizationEnabled;
}
/**
* @return \Mautic\PageBundle\Entity\Redirect|object|null
*/
public function getTrackableLink($url)
{
// Ensure a valid URL and that it has not already been found
if (!str_starts_with($url, 'http') && !str_starts_with($url, 'ftp')) {
return null;
}
if ($this->email) {
// Get a Trackable which is channel aware
/** @var \Mautic\PageBundle\Model\TrackableModel $trackableModel */
$trackableModel = $this->factory->getModel('page.trackable');
$trackable = $trackableModel->getTrackableByUrl($url, 'email', $this->email->getId());
return $trackable->getRedirect();
}
/** @var \Mautic\PageBundle\Model\RedirectModel $redirectModel */
$redirectModel = $this->factory->getModel('page.redirect');
return $redirectModel->getRedirectByUrl($url);
}
/**
* Create an email stat.
*
* @param bool|true $persist
* @param string|null $emailAddress
*/
public function createEmailStat($persist = true, $emailAddress = null, $listId = null): Stat
{
$stat = new Stat();
$stat->setDateSent(new \DateTime());
$emailExists = $this->email && $this->email->getId();
if ($emailExists) {
$stat->setEmail($this->email);
}
// Note if a lead
if (null !== $this->lead) {
try {
$stat->setLead($this->factory->getEntityManager()->getReference(Lead::class, $this->lead['id']));
} catch (ORMException) {
// keep IDE happy
}
$emailAddress = $this->lead['email'];
}
// Find email if applicable
if (null === $emailAddress) {
// Use the last address set
$emailAddresses = $this->message->getTo();
if (count($emailAddresses)) {
$emailAddress = array_key_last($emailAddresses);
}
}
$stat->setEmailAddress($emailAddress);
// Note if sent from a lead list
if (null !== $listId) {
try {
$stat->setList($this->factory->getEntityManager()->getReference(\Mautic\LeadBundle\Entity\LeadList::class, $listId));
} catch (ORMException) {
// keep IDE happy
}
}
$stat->setTrackingHash($this->idHash);
if (!empty($this->source)) {
$stat->setSource($this->source[0]);
$stat->setSourceId($this->source[1]);
}
$stat->setTokens($this->getTokens());
/** @var \Mautic\EmailBundle\Model\EmailModel $emailModel */
$emailModel = $this->factory->getModel('email');
// Save a copy of the email - use email ID if available simply to prevent from having to rehash over and over
$id = $emailExists ? $this->email->getId() : md5($this->subject.$this->body['content']);
if (!isset($this->copies[$id])) {
$hash = (32 !== strlen($id)) ? md5($this->subject.$this->body['content']) : $id;
$copy = $emailModel->getCopyRepository()->findByHash($hash);
$copyCreated = false;
if (null === $copy) {
$contentToPersist = strtr($this->body['content'], array_flip($this->embedImagesReplaces));
if (!$emailModel->getCopyRepository()->saveCopy($hash, $this->subject, $contentToPersist, $this->plainText)) {
// Try one more time to find the ID in case there was overlap when creating
$copy = $emailModel->getCopyRepository()->findByHash($hash);
} else {
$copyCreated = true;
}
}
if ($copy || $copyCreated) {
$this->copies[$id] = $hash;
}
}
if (isset($this->copies[$id])) {
try {
$stat->setStoredCopy($this->factory->getEntityManager()->getReference(Copy::class, $this->copies[$id]));
} catch (ORMException) {
// keep IDE happy
}
}
if ($persist) {
$emailModel->saveEmailStat($stat);
}
return $stat;
}
/**
* Check to see if a monitored email box is enabled and configured.
*
* @return bool|array
*/
public function isMontoringEnabled($bundleKey, $folderKey)
{
if ($this->mailbox->isConfigured($bundleKey, $folderKey)) {
return $this->mailbox->getMailboxSettings();
}
return false;
}
/**
* Generate bounce email for the lead.
*
* @return bool|string
*/
public function generateBounceEmail($idHash = null)
{
$monitoredEmail = false;
if ($settings = $this->isMontoringEnabled('EmailBundle', 'bounces')) {
// Append the bounce notation
[$email, $domain] = explode('@', $settings['address']);
$email .= '+bounce';
if ($idHash || $this->idHash) {
$email .= '_'.($idHash ?: $this->idHash);
}
$monitoredEmail = $email.'@'.$domain;
}
return $monitoredEmail;
}
/**
* Generate an unsubscribe email for the lead.
*
* @return bool|string
*/
public function generateUnsubscribeEmail($idHash = null)
{
$monitoredEmail = false;
if ($settings = $this->isMontoringEnabled('EmailBundle', 'unsubscribes')) {
// Append the bounce notation
[$email, $domain] = explode('@', $settings['address']);
$email .= '+unsubscribe';
if ($idHash || $this->idHash) {
$email .= '_'.($idHash ?: $this->idHash);
}
$monitoredEmail = $email.'@'.$domain;
}
return $monitoredEmail;
}
/**
* @param Email $entity
*/
public function processSlots($slots, $entity): void
{
/** @var \Mautic\CoreBundle\Twig\Helper\SlotsHelper $slotsHelper */
$slotsHelper = $this->factory->getHelper('template.slots');
$content = $entity->getContent();
foreach ($slots as $slot => $slotConfig) {
if (is_numeric($slot)) {
$slot = $slotConfig;
$slotConfig = [];
}
$value = $content[$slot] ?? '';
$slotsHelper->set($slot, $value);
}
}
/**
* Clean the name - if empty, set as null to ensure pretty headers.
*
* @return string|null
*/
protected function cleanName($name)
{
if (null === $name) {
return $name;
}
$name = trim(html_entity_decode($name, ENT_QUOTES));
// If empty, replace with null so that email clients do not show empty name because of To: '' <[email protected]>
if (empty($name)) {
$name = null;
}
return $name;
}
/**
* @return array<string,string>
*/
private function getSystemHeaders(): array
{
/**
* This section is stopped, because it is preventing global headers from being merged
* if ($this->email) {
* // We are purposively ignoring system headers if using an Email entity
* return [];
* }.
*/
if (!$systemHeaders = $this->coreParametersHelper->get('mailer_custom_headers', [])) {
return [];
}
// HTML decode headers
$systemHeaders = array_map('html_entity_decode', $systemHeaders);
return $systemHeaders;
}
/**
* Merge system headers into custom headers if applicable.
*/
private function setMessageHeaders(): void
{
$headers = $this->getCustomHeaders();
// Set custom headers
if (!empty($headers)) {
$tokens = $this->getTokens();
// Replace tokens
$messageHeaders = $this->message->getHeaders();
foreach ($headers as $headerKey => $headerValue) {
$headerValue = str_ireplace(array_keys($tokens), $tokens, $headerValue);
if (!$headerValue) {
$messageHeaders->remove($headerKey);
continue;
}
try {
if (in_array(strtolower($headerKey), ['from', 'to', 'cc', 'bcc', 'reply-to'])) {
// Handling headers that require MailboxListHeader
$headerValue = array_map(fn ($address): Address => new Address($address),
explode(',', $headerValue));
}
if ($messageHeaders->has($headerKey)) {
$header = $messageHeaders->get($headerKey);
$header->setBody($headerValue);
} else {
$messageHeaders->addHeader($headerKey, $headerValue);
}
} catch (RfcComplianceException) {
$messageHeaders->remove($headerKey);
}
}
}
if (array_key_exists('List-Unsubscribe', $headers)) {
unset($headers['List-Unsubscribe']);
$this->setCustomHeaders($headers, false);
}
}
private function buildMetadata($name, array $tokens): array
{
return [
'name' => $name,
'leadId' => (!empty($this->lead)) ? $this->lead['id'] : null,
'emailId' => (!empty($this->email)) ? $this->email->getId() : null,
'emailName' => (!empty($this->email)) ? $this->email->getName() : null,
'hashId' => $this->idHash,
'hashIdState' => $this->idHashState,
'source' => $this->source,
'tokens' => $tokens,
'utmTags' => (!empty($this->email)) ? $this->email->getUtmTags() : [],
];
}
/**
* Validates a given address to ensure RFC 2822, 3.6.2 specs.
*
* @deprecated 2.11.0 to be removed in 3.0; use Mautic\EmailBundle\Helper\EmailValidator
*
* @throws InvalidEmailException
*/
public static function validateEmail($address): void
{
$invalidChar = strpbrk($address, '\'^&*%');
if (false !== $invalidChar) {
throw new InvalidEmailException('Email address ['.$address.'] contains this invalid character: '.substr($invalidChar, 0, 1));
}
if (!filter_var($address, FILTER_VALIDATE_EMAIL)) {
throw new InvalidEmailException('Email address ['.$address.'] is invalid');
}
}
private function setDefaultFrom($overrideFrom, AddressDTO $systemFrom): void
{
if (is_array($overrideFrom)) {
$fromEmail = key($overrideFrom);
$fromName = $this->cleanName($overrideFrom[$fromEmail]);
$overrideFrom = [$fromEmail => $fromName];
} elseif (!empty($overrideFrom)) {
$overrideFrom = [$overrideFrom => null];
}
$this->systemFrom = $overrideFrom ?: $systemFrom;
$this->from = $this->systemFrom;
}
private function setDefaultReplyTo($systemReplyToEmail = null, AddressDTO $systemFromEmail = null): void
{
$fromEmail = null;
if ($systemFromEmail) {
$fromEmail = $systemFromEmail->getEmail();
}
$this->systemReplyTo = $systemReplyToEmail ?: $fromEmail;
$this->replyTo = $this->systemReplyTo;
}
private function setFromForSingleMessage(): void
{
$email = $this->getEmail();
if ($this->lead && $email && $email->getUseOwnerAsMailer()) {
if (!isset($this->lead['owner_id'])) {
$this->lead['owner_id'] = 0;
}
$from = $this->fromEmailHelper->getFromAddressConsideringOwner($this->getFrom(), $this->lead, $email);
$this->setMessageFrom($from);
return;
}
if ($email) {
$fromEmail = $email->getFromAddress();
$fromName = $email->getFromName();
if (!empty($fromEmail) || !empty($fromName)) {
if (empty($fromName)) {
$fromName = $this->getFrom()->getName();
} elseif (empty($fromEmail)) {
$fromEmail = $this->getFrom()->getEmail();
}
$this->from = new AddressDTO($fromEmail, $fromName);
}
}
$from = $this->fromEmailHelper->getFromAddressDto($this->getFrom(), $this->lead, $email);
$this->setMessageFrom($from);
}
private function setReplyToForSingleMessage(?Email $emailToSend): void
{
// 1. Set the reply to address from the email "reply-to" setting if set.
if ($emailToSend && null !== $emailToSend->getReplyToAddress()) {
$this->setMessageReplyTo($emailToSend->getReplyToAddress());
return;
}
// 2. Set the reply to address from the lead owner if set.
if (!empty($this->lead['owner_id'])) {
try {
$owner = $this->fromEmailHelper->getContactOwner((int) $this->lead['owner_id'], $emailToSend);
$this->setMessageReplyTo($owner['email']);
} catch (OwnerNotFoundException) {
$this->setMessageReplyTo($this->getSystemReplyTo());
}
return;
}
// 3. Set the reply to address from the email "from" setting if set.
if ($emailToSend && null !== $emailToSend->getFromAddress() && empty($this->coreParametersHelper->get('mailer_reply_to_email'))) {
$this->setMessageReplyTo($emailToSend->getFromAddress());
return;
}
// 4. Set the reply to address from the global config if nothing from above is set.
$this->setMessageReplyTo($this->getReplyTo());
}
/**
* @return bool|array
*
* @deprecated
*/
protected function getContactOwner(&$contact)
{
if (!is_array($contact)) {
return false;
}
if (!isset($contact['id'])) {
return false;
}
if (!isset($contact['owner_id'])) {
$contact['owner_id'] = 0;
return false;
}
try {
return $this->fromEmailHelper->getContactOwner($contact['owner_id']);
} catch (OwnerNotFoundException) {
return false;
}
}
/**
* @deprecated; use FromEmailHelper::getUserSignature
*/
protected function getContactOwnerSignature($owner): string
{
if (empty($owner['id'])) {
return '';
}
try {
$this->fromEmailHelper->getContactOwner($owner['id']);
} catch (OwnerNotFoundException) {
return '';
}
return $this->fromEmailHelper->getSignature();
}
private function getMessageInstance(): MauticMessage
{
return new MauticMessage();
}
private function getReplyTo(): string
{
return $this->replyTo ?? $this->getSystemReplyTo();
}
private function getSystemReplyTo(): string
{
if (!$this->systemReplyTo) {
$fromEmailAddress = $this->from ? $this->from->getEmail() : null;
$this->systemReplyTo = $this->coreParametersHelper->get('mailer_reply_to_email') ?? $fromEmailAddress ?? $this->getSystemFrom()->getEmail();
}
return $this->systemReplyTo;
}
private function getFrom(): AddressDTO
{
return $this->from ?? $this->getSystemFrom();
}
private function getSystemFrom(): AddressDTO
{
if (!$this->systemFrom || $this->systemFrom->isEmpty()) {
$this->systemFrom = new AddressDTO($this->coreParametersHelper->get('mailer_from_email'), $this->coreParametersHelper->get('mailer_from_name'));
$this->fromEmailHelper->setDefaultFrom($this->systemFrom);
}
return $this->systemFrom;
}
public function dispatchPreSendEvent(): void
{
if (null === $this->dispatcher) {
$this->dispatcher = $this->factory->getDispatcher();
}
if (empty($this->dispatcher)) {
return;
}
$event = new EmailSendEvent($this);
$this->dispatcher->dispatch($event, EmailEvents::EMAIL_PRE_SEND);
$this->skip = $event->isSkip();
$this->fatal = $event->isFatal();
$errors = $event->getErrors();
if (!empty($errors)) {
$currentErrors = [];
if (isset($this->errors['failures']) && is_array($this->errors['failures'])) {
$currentErrors = $this->errors['failures'];
}
$this->errors['failures'] = array_merge($errors, $currentErrors);
}
unset($event);
}
}
|