Skip to content

Commit d810229

Browse files
committed
Add Embed managment
1 parent 0d4a1ba commit d810229

File tree

2 files changed

+40
-4
lines changed

2 files changed

+40
-4
lines changed

src/Mailer.php

+6
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,12 @@ public function sendMessage($message)
134134
$mailJetMessage['Attachments'] = $attachments;
135135
}
136136

137+
//Get inilined attachments
138+
$inlinedAttachments = $message->getInlinedAttachments();
139+
if ($inlinedAttachments !== null) {
140+
$mailJetMessage['InlinedAttachments'] = $inlinedAttachments;
141+
}
142+
137143
$headers = $message->getHeaders();
138144
if (empty($headers) === false) {
139145
$mailJetMessage['Headers'] = $headers;

src/Message.php

+34-4
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ class Message extends BaseMessage
8686
*/
8787
protected $attachments = [];
8888

89+
/**
90+
* @var array
91+
*/
92+
protected $inlinedAttachments = [];
93+
8994
/**
9095
* @var string
9196
*/
@@ -496,6 +501,31 @@ public function getAttachments()
496501
}
497502
}
498503

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+
499529
/**
500530
* @inheritdoc
501531
*/
@@ -558,8 +588,8 @@ public function embed($fileName, array $options = [])
558588
} else {
559589
$embed['ContentType'] = 'application/octet-stream';
560590
}
561-
$embed['ContentID'] = 'cid:' . uniqid();
562-
$this->attachments[] = $embed;
591+
$embed['ContentID'] = uniqid();
592+
$this->inlinedAttachments[] = $embed;
563593
return $embed['ContentID'];
564594
}
565595

@@ -581,8 +611,8 @@ public function embedContent($content, array $options = [])
581611
} else {
582612
$embed['ContentType'] = 'application/octet-stream';
583613
}
584-
$embed['ContentID'] = 'cid:' . uniqid();
585-
$this->attachments[] = $embed;
614+
$embed['ContentID'] = uniqid();
615+
$this->inlinedAttachments[] = $embed;
586616
return $embed['ContentID'];
587617
}
588618

0 commit comments

Comments
 (0)