Email.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Mime;
  11. use Symfony\Component\Mime\Exception\LogicException;
  12. use Symfony\Component\Mime\Part\AbstractPart;
  13. use Symfony\Component\Mime\Part\DataPart;
  14. use Symfony\Component\Mime\Part\Multipart\AlternativePart;
  15. use Symfony\Component\Mime\Part\Multipart\MixedPart;
  16. use Symfony\Component\Mime\Part\Multipart\RelatedPart;
  17. use Symfony\Component\Mime\Part\TextPart;
  18. /**
  19. * @author Fabien Potencier <fabien@symfony.com>
  20. */
  21. class Email extends Message
  22. {
  23. public const PRIORITY_HIGHEST = 1;
  24. public const PRIORITY_HIGH = 2;
  25. public const PRIORITY_NORMAL = 3;
  26. public const PRIORITY_LOW = 4;
  27. public const PRIORITY_LOWEST = 5;
  28. private const PRIORITY_MAP = [
  29. self::PRIORITY_HIGHEST => 'Highest',
  30. self::PRIORITY_HIGH => 'High',
  31. self::PRIORITY_NORMAL => 'Normal',
  32. self::PRIORITY_LOW => 'Low',
  33. self::PRIORITY_LOWEST => 'Lowest',
  34. ];
  35. private $text;
  36. private $textCharset;
  37. private $html;
  38. private $htmlCharset;
  39. private $attachments = [];
  40. /**
  41. * @var AbstractPart|null
  42. */
  43. private $cachedBody; // Used to avoid wrong body hash in DKIM signatures with multiple parts (e.g. HTML + TEXT) due to multiple boundaries.
  44. /**
  45. * @return $this
  46. */
  47. public function subject(string $subject)
  48. {
  49. return $this->setHeaderBody('Text', 'Subject', $subject);
  50. }
  51. public function getSubject(): ?string
  52. {
  53. return $this->getHeaders()->getHeaderBody('Subject');
  54. }
  55. /**
  56. * @return $this
  57. */
  58. public function date(\DateTimeInterface $dateTime)
  59. {
  60. return $this->setHeaderBody('Date', 'Date', $dateTime);
  61. }
  62. public function getDate(): ?\DateTimeImmutable
  63. {
  64. return $this->getHeaders()->getHeaderBody('Date');
  65. }
  66. /**
  67. * @param Address|string $address
  68. *
  69. * @return $this
  70. */
  71. public function returnPath($address)
  72. {
  73. return $this->setHeaderBody('Path', 'Return-Path', Address::create($address));
  74. }
  75. public function getReturnPath(): ?Address
  76. {
  77. return $this->getHeaders()->getHeaderBody('Return-Path');
  78. }
  79. /**
  80. * @param Address|string $address
  81. *
  82. * @return $this
  83. */
  84. public function sender($address)
  85. {
  86. return $this->setHeaderBody('Mailbox', 'Sender', Address::create($address));
  87. }
  88. public function getSender(): ?Address
  89. {
  90. return $this->getHeaders()->getHeaderBody('Sender');
  91. }
  92. /**
  93. * @param Address|string ...$addresses
  94. *
  95. * @return $this
  96. */
  97. public function addFrom(...$addresses)
  98. {
  99. return $this->addListAddressHeaderBody('From', $addresses);
  100. }
  101. /**
  102. * @param Address|string ...$addresses
  103. *
  104. * @return $this
  105. */
  106. public function from(...$addresses)
  107. {
  108. if (!$addresses) {
  109. throw new LogicException('"from()" must be called with at least one address.');
  110. }
  111. return $this->setListAddressHeaderBody('From', $addresses);
  112. }
  113. /**
  114. * @return Address[]
  115. */
  116. public function getFrom(): array
  117. {
  118. return $this->getHeaders()->getHeaderBody('From') ?: [];
  119. }
  120. /**
  121. * @param Address|string ...$addresses
  122. *
  123. * @return $this
  124. */
  125. public function addReplyTo(...$addresses)
  126. {
  127. return $this->addListAddressHeaderBody('Reply-To', $addresses);
  128. }
  129. /**
  130. * @param Address|string ...$addresses
  131. *
  132. * @return $this
  133. */
  134. public function replyTo(...$addresses)
  135. {
  136. return $this->setListAddressHeaderBody('Reply-To', $addresses);
  137. }
  138. /**
  139. * @return Address[]
  140. */
  141. public function getReplyTo(): array
  142. {
  143. return $this->getHeaders()->getHeaderBody('Reply-To') ?: [];
  144. }
  145. /**
  146. * @param Address|string ...$addresses
  147. *
  148. * @return $this
  149. */
  150. public function addTo(...$addresses)
  151. {
  152. return $this->addListAddressHeaderBody('To', $addresses);
  153. }
  154. /**
  155. * @param Address|string ...$addresses
  156. *
  157. * @return $this
  158. */
  159. public function to(...$addresses)
  160. {
  161. return $this->setListAddressHeaderBody('To', $addresses);
  162. }
  163. /**
  164. * @return Address[]
  165. */
  166. public function getTo(): array
  167. {
  168. return $this->getHeaders()->getHeaderBody('To') ?: [];
  169. }
  170. /**
  171. * @param Address|string ...$addresses
  172. *
  173. * @return $this
  174. */
  175. public function addCc(...$addresses)
  176. {
  177. return $this->addListAddressHeaderBody('Cc', $addresses);
  178. }
  179. /**
  180. * @param Address|string ...$addresses
  181. *
  182. * @return $this
  183. */
  184. public function cc(...$addresses)
  185. {
  186. return $this->setListAddressHeaderBody('Cc', $addresses);
  187. }
  188. /**
  189. * @return Address[]
  190. */
  191. public function getCc(): array
  192. {
  193. return $this->getHeaders()->getHeaderBody('Cc') ?: [];
  194. }
  195. /**
  196. * @param Address|string ...$addresses
  197. *
  198. * @return $this
  199. */
  200. public function addBcc(...$addresses)
  201. {
  202. return $this->addListAddressHeaderBody('Bcc', $addresses);
  203. }
  204. /**
  205. * @param Address|string ...$addresses
  206. *
  207. * @return $this
  208. */
  209. public function bcc(...$addresses)
  210. {
  211. return $this->setListAddressHeaderBody('Bcc', $addresses);
  212. }
  213. /**
  214. * @return Address[]
  215. */
  216. public function getBcc(): array
  217. {
  218. return $this->getHeaders()->getHeaderBody('Bcc') ?: [];
  219. }
  220. /**
  221. * Sets the priority of this message.
  222. *
  223. * The value is an integer where 1 is the highest priority and 5 is the lowest.
  224. *
  225. * @return $this
  226. */
  227. public function priority(int $priority)
  228. {
  229. if ($priority > 5) {
  230. $priority = 5;
  231. } elseif ($priority < 1) {
  232. $priority = 1;
  233. }
  234. return $this->setHeaderBody('Text', 'X-Priority', sprintf('%d (%s)', $priority, self::PRIORITY_MAP[$priority]));
  235. }
  236. /**
  237. * Get the priority of this message.
  238. *
  239. * The returned value is an integer where 1 is the highest priority and 5
  240. * is the lowest.
  241. */
  242. public function getPriority(): int
  243. {
  244. [$priority] = sscanf($this->getHeaders()->getHeaderBody('X-Priority') ?? '', '%[1-5]');
  245. return $priority ?? 3;
  246. }
  247. /**
  248. * @param resource|string|null $body
  249. *
  250. * @return $this
  251. */
  252. public function text($body, string $charset = 'utf-8')
  253. {
  254. if (null !== $body && !\is_string($body) && !\is_resource($body)) {
  255. throw new \TypeError(sprintf('The body must be a string, a resource or null (got "%s").', get_debug_type($body)));
  256. }
  257. $this->cachedBody = null;
  258. $this->text = $body;
  259. $this->textCharset = $charset;
  260. return $this;
  261. }
  262. /**
  263. * @return resource|string|null
  264. */
  265. public function getTextBody()
  266. {
  267. return $this->text;
  268. }
  269. public function getTextCharset(): ?string
  270. {
  271. return $this->textCharset;
  272. }
  273. /**
  274. * @param resource|string|null $body
  275. *
  276. * @return $this
  277. */
  278. public function html($body, string $charset = 'utf-8')
  279. {
  280. if (null !== $body && !\is_string($body) && !\is_resource($body)) {
  281. throw new \TypeError(sprintf('The body must be a string, a resource or null (got "%s").', get_debug_type($body)));
  282. }
  283. $this->cachedBody = null;
  284. $this->html = $body;
  285. $this->htmlCharset = $charset;
  286. return $this;
  287. }
  288. /**
  289. * @return resource|string|null
  290. */
  291. public function getHtmlBody()
  292. {
  293. return $this->html;
  294. }
  295. public function getHtmlCharset(): ?string
  296. {
  297. return $this->htmlCharset;
  298. }
  299. /**
  300. * @param resource|string $body
  301. *
  302. * @return $this
  303. */
  304. public function attach($body, ?string $name = null, ?string $contentType = null)
  305. {
  306. if (!\is_string($body) && !\is_resource($body)) {
  307. throw new \TypeError(sprintf('The body must be a string or a resource (got "%s").', get_debug_type($body)));
  308. }
  309. $this->cachedBody = null;
  310. $this->attachments[] = ['body' => $body, 'name' => $name, 'content-type' => $contentType, 'inline' => false];
  311. return $this;
  312. }
  313. /**
  314. * @return $this
  315. */
  316. public function attachFromPath(string $path, ?string $name = null, ?string $contentType = null)
  317. {
  318. $this->cachedBody = null;
  319. $this->attachments[] = ['path' => $path, 'name' => $name, 'content-type' => $contentType, 'inline' => false];
  320. return $this;
  321. }
  322. /**
  323. * @param resource|string $body
  324. *
  325. * @return $this
  326. */
  327. public function embed($body, ?string $name = null, ?string $contentType = null)
  328. {
  329. if (!\is_string($body) && !\is_resource($body)) {
  330. throw new \TypeError(sprintf('The body must be a string or a resource (got "%s").', get_debug_type($body)));
  331. }
  332. $this->cachedBody = null;
  333. $this->attachments[] = ['body' => $body, 'name' => $name, 'content-type' => $contentType, 'inline' => true];
  334. return $this;
  335. }
  336. /**
  337. * @return $this
  338. */
  339. public function embedFromPath(string $path, ?string $name = null, ?string $contentType = null)
  340. {
  341. $this->cachedBody = null;
  342. $this->attachments[] = ['path' => $path, 'name' => $name, 'content-type' => $contentType, 'inline' => true];
  343. return $this;
  344. }
  345. /**
  346. * @return $this
  347. */
  348. public function attachPart(DataPart $part)
  349. {
  350. $this->cachedBody = null;
  351. $this->attachments[] = ['part' => $part];
  352. return $this;
  353. }
  354. /**
  355. * @return array|DataPart[]
  356. */
  357. public function getAttachments(): array
  358. {
  359. $parts = [];
  360. foreach ($this->attachments as $attachment) {
  361. $parts[] = $this->createDataPart($attachment);
  362. }
  363. return $parts;
  364. }
  365. public function getBody(): AbstractPart
  366. {
  367. if (null !== $body = parent::getBody()) {
  368. return $body;
  369. }
  370. return $this->generateBody();
  371. }
  372. public function ensureValidity()
  373. {
  374. if (null === $this->text && null === $this->html && !$this->attachments) {
  375. throw new LogicException('A message must have a text or an HTML part or attachments.');
  376. }
  377. parent::ensureValidity();
  378. }
  379. /**
  380. * Generates an AbstractPart based on the raw body of a message.
  381. *
  382. * The most "complex" part generated by this method is when there is text and HTML bodies
  383. * with related images for the HTML part and some attachments:
  384. *
  385. * multipart/mixed
  386. * |
  387. * |------------> multipart/related
  388. * | |
  389. * | |------------> multipart/alternative
  390. * | | |
  391. * | | ------------> text/plain (with content)
  392. * | | |
  393. * | | ------------> text/html (with content)
  394. * | |
  395. * | ------------> image/png (with content)
  396. * |
  397. * ------------> application/pdf (with content)
  398. */
  399. private function generateBody(): AbstractPart
  400. {
  401. if (null !== $this->cachedBody) {
  402. return $this->cachedBody;
  403. }
  404. $this->ensureValidity();
  405. [$htmlPart, $otherParts, $relatedParts] = $this->prepareParts();
  406. $part = null === $this->text ? null : new TextPart($this->text, $this->textCharset);
  407. if (null !== $htmlPart) {
  408. if (null !== $part) {
  409. $part = new AlternativePart($part, $htmlPart);
  410. } else {
  411. $part = $htmlPart;
  412. }
  413. }
  414. if ($relatedParts) {
  415. $part = new RelatedPart($part, ...$relatedParts);
  416. }
  417. if ($otherParts) {
  418. if ($part) {
  419. $part = new MixedPart($part, ...$otherParts);
  420. } else {
  421. $part = new MixedPart(...$otherParts);
  422. }
  423. }
  424. return $this->cachedBody = $part;
  425. }
  426. private function prepareParts(): ?array
  427. {
  428. $names = [];
  429. $htmlPart = null;
  430. $html = $this->html;
  431. if (null !== $html) {
  432. $htmlPart = new TextPart($html, $this->htmlCharset, 'html');
  433. $html = $htmlPart->getBody();
  434. preg_match_all('(<img\s+[^>]*src\s*=\s*(?:([\'"])cid:(.+?)\\1|cid:([^>\s]+)))i', $html, $names);
  435. $names = array_filter(array_unique(array_merge($names[2], $names[3])));
  436. }
  437. // usage of reflection is a temporary workaround for missing getters that will be added in 6.2
  438. $nameRef = new \ReflectionProperty(TextPart::class, 'name');
  439. $nameRef->setAccessible(true);
  440. $otherParts = $relatedParts = [];
  441. foreach ($this->attachments as $attachment) {
  442. $part = $this->createDataPart($attachment);
  443. if (isset($attachment['part'])) {
  444. $attachment['name'] = $nameRef->getValue($part);
  445. }
  446. $related = false;
  447. foreach ($names as $name) {
  448. if ($name !== $attachment['name']) {
  449. continue;
  450. }
  451. if (isset($relatedParts[$name])) {
  452. continue 2;
  453. }
  454. $part->setDisposition('inline');
  455. $html = str_replace('cid:'.$name, 'cid:'.$part->getContentId(), $html, $count);
  456. if ($count) {
  457. $related = true;
  458. }
  459. $part->setName($part->getContentId());
  460. break;
  461. }
  462. if ($related) {
  463. $relatedParts[$attachment['name']] = $part;
  464. } else {
  465. $otherParts[] = $part;
  466. }
  467. }
  468. if (null !== $htmlPart) {
  469. $htmlPart = new TextPart($html, $this->htmlCharset, 'html');
  470. }
  471. return [$htmlPart, $otherParts, array_values($relatedParts)];
  472. }
  473. private function createDataPart(array $attachment): DataPart
  474. {
  475. if (isset($attachment['part'])) {
  476. return $attachment['part'];
  477. }
  478. if (isset($attachment['body'])) {
  479. $part = new DataPart($attachment['body'], $attachment['name'] ?? null, $attachment['content-type'] ?? null);
  480. } else {
  481. $part = DataPart::fromPath($attachment['path'] ?? '', $attachment['name'] ?? null, $attachment['content-type'] ?? null);
  482. }
  483. if ($attachment['inline']) {
  484. $part->asInline();
  485. }
  486. return $part;
  487. }
  488. /**
  489. * @return $this
  490. */
  491. private function setHeaderBody(string $type, string $name, $body): object
  492. {
  493. $this->getHeaders()->setHeaderBody($type, $name, $body);
  494. return $this;
  495. }
  496. private function addListAddressHeaderBody(string $name, array $addresses)
  497. {
  498. if (!$header = $this->getHeaders()->get($name)) {
  499. return $this->setListAddressHeaderBody($name, $addresses);
  500. }
  501. $header->addAddresses(Address::createArray($addresses));
  502. return $this;
  503. }
  504. /**
  505. * @return $this
  506. */
  507. private function setListAddressHeaderBody(string $name, array $addresses)
  508. {
  509. $addresses = Address::createArray($addresses);
  510. $headers = $this->getHeaders();
  511. if ($header = $headers->get($name)) {
  512. $header->setAddresses($addresses);
  513. } else {
  514. $headers->addMailboxListHeader($name, $addresses);
  515. }
  516. return $this;
  517. }
  518. /**
  519. * @internal
  520. */
  521. public function __serialize(): array
  522. {
  523. if (\is_resource($this->text)) {
  524. $this->text = (new TextPart($this->text))->getBody();
  525. }
  526. if (\is_resource($this->html)) {
  527. $this->html = (new TextPart($this->html))->getBody();
  528. }
  529. foreach ($this->attachments as $i => $attachment) {
  530. if (isset($attachment['body']) && \is_resource($attachment['body'])) {
  531. $this->attachments[$i]['body'] = (new TextPart($attachment['body']))->getBody();
  532. }
  533. }
  534. return [$this->text, $this->textCharset, $this->html, $this->htmlCharset, $this->attachments, parent::__serialize()];
  535. }
  536. /**
  537. * @internal
  538. */
  539. public function __unserialize(array $data): void
  540. {
  541. [$this->text, $this->textCharset, $this->html, $this->htmlCharset, $this->attachments, $parentData] = $data;
  542. parent::__unserialize($parentData);
  543. }
  544. }