我在我的laravel应用程序中使用Mailgun作为邮件驱动程序,以及用于SMS的nexmo。
我想要实现的是保持通过Mailgun或Nexmo发送的通知的传递状态。 Incase of Nexmo我能够实现这一点,因为我在处理通知后触发的NotificationSent事件中获得了nexmo MessageId。
但是,在电子邮件的事件实例中,响应为空。
知道我缺少什么,或者我如何检索mailgun message-id?
答案 0 :(得分:1)
查看代码(MailgunTransport)时,它将执行以下操作
$this->client->post($this->url, $this->payload($message, $to));
$this->sendPerformed($message);
return $this->numberOfRecipients($message);
由于Laravel合同要求实施发回电子邮件的数量。
即使您能够进入邮件传输,它也不会存储响应,因此无法捕获邮件ID。
你可以做的是实现你自己的(或查看包装)以适应邮件客户端,但这不是一个完美的解决方案,需要一些丑陋的instanceof
检查。
答案 1 :(得分:1)
我找到了一个可以解决这个问题的解决方法。不像我希望的那样整洁,但是为了将来的参考而张贴任何人都需要这个。
我创建了一个自定义通知渠道,扩展了Illuminate \ Notifications \ Channels \ MailChannel
class EmailChannel extends MailChannel
{
/**
* Send the given notification.
*
* @param mixed $notifiable
* @param \Illuminate\Notifications\Notification $notification
* @return void
*/
public function send($notifiable, Notification $notification)
{
if (! $notifiable->routeNotificationFor('mail')) {
return;
}
$message = $notification->toMail($notifiable);
if ($message instanceof Mailable) {
return $message->send($this->mailer);
}
$this->mailer->send($message->view, $message->data(), function ($m) use ($notifiable, $notification, $message) {
$recipients = empty($message->to) ? $notifiable->routeNotificationFor('mail') : $message->to;
if (! empty($message->from)) {
$m->from($message->from[0], isset($message->from[1]) ? $message->from[1] : null);
}
if (is_array($recipients)) {
$m->bcc($recipients);
} else {
$m->to($recipients);
}
if ($message->cc) {
$m->cc($message->cc);
}
if (! empty($message->replyTo)) {
$m->replyTo($message->replyTo[0], isset($message->replyTo[1]) ? $message->replyTo[1] : null);
}
$m->subject($message->subject ?: Str::title(
Str::snake(class_basename($notification), ' ')
));
foreach ($message->attachments as $attachment) {
$m->attach($attachment['file'], $attachment['options']);
}
foreach ($message->rawAttachments as $attachment) {
$m->attachData($attachment['data'], $attachment['name'], $attachment['options']);
}
if (! is_null($message->priority)) {
$m->setPriority($message->priority);
}
$message = $notification->getMessage(); // I have this method in my notification class which returns an eloquent model
$message->email_id = $m->getSwiftMessage()->getId();
$message->save();
});
}
}