@@ -86,6 +86,11 @@ class Message extends BaseMessage
86
86
*/
87
87
protected $ attachments = [];
88
88
89
+ /**
90
+ * @var array
91
+ */
92
+ protected $ inlinedAttachments = [];
93
+
89
94
/**
90
95
* @var string
91
96
*/
@@ -496,6 +501,31 @@ public function getAttachments()
496
501
}
497
502
}
498
503
504
+ /**
505
+ * @return array|null list of inlinedAttachments
506
+ * @since XXX
507
+ */
508
+ public function getInlinedAttachments ()
509
+ {
510
+ if (empty ($ this ->inlinedAttachments ) === true ) {
511
+ return null ;
512
+ } else {
513
+ $ inlinedAttachments = array_map (function ($ inlinedAttachment ) {
514
+ $ item = [
515
+ 'ContentType ' => $ inlinedAttachment ['ContentType ' ],
516
+ 'Filename ' => $ inlinedAttachment ['Name ' ],
517
+ 'Base64Content ' => $ inlinedAttachment ['Content ' ],
518
+ ];
519
+ if (isset ($ inlinedAttachment ['ContentID ' ]) === true ) {
520
+ $ item ['ContentID ' ] = $ inlinedAttachment ['ContentID ' ];
521
+ }
522
+ return $ item ;
523
+ }, $ this ->inlinedAttachments );
524
+ return $ inlinedAttachments ;
525
+ }
526
+ }
527
+
528
+
499
529
/**
500
530
* @inheritdoc
501
531
*/
@@ -558,8 +588,8 @@ public function embed($fileName, array $options = [])
558
588
} else {
559
589
$ embed ['ContentType ' ] = 'application/octet-stream ' ;
560
590
}
561
- $ embed ['ContentID ' ] = ' cid: ' . uniqid ();
562
- $ this ->attachments [] = $ embed ;
591
+ $ embed ['ContentID ' ] = uniqid ();
592
+ $ this ->inlinedAttachments [] = $ embed ;
563
593
return $ embed ['ContentID ' ];
564
594
}
565
595
@@ -581,8 +611,8 @@ public function embedContent($content, array $options = [])
581
611
} else {
582
612
$ embed ['ContentType ' ] = 'application/octet-stream ' ;
583
613
}
584
- $ embed ['ContentID ' ] = ' cid: ' . uniqid ();
585
- $ this ->attachments [] = $ embed ;
614
+ $ embed ['ContentID ' ] = uniqid ();
615
+ $ this ->inlinedAttachments [] = $ embed ;
586
616
return $ embed ['ContentID ' ];
587
617
}
588
618
0 commit comments