We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afacec2 commit f3a1a2bCopy full SHA for f3a1a2b
src/Support/Clockwork/Converter.php
@@ -117,6 +117,18 @@ public function convert($data)
117
}
118
119
120
+ if (isset($data['swiftmailer_mails'])) {
121
+ foreach($data['swiftmailer_mails']['mails'] as $mail) {
122
+ $output['emailsData'][] = [
123
+ 'data' => [
124
+ 'to' => $mail['to'],
125
+ 'subject' => $mail['subject'],
126
+ 'headers' => isset($mail['headers']) ? explode("\n", $mail['headers']) : null,
127
+ ],
128
+ ];
129
+ }
130
131
+
132
return $output;
133
134
0 commit comments