diff --git a/src/InboundEmail.php b/src/InboundEmail.php index 884445f..6e24fff 100644 --- a/src/InboundEmail.php +++ b/src/InboundEmail.php @@ -170,7 +170,8 @@ public function forward($recipients) return Mail::send([], [], function ($message) use ($recipients) { $message->to($recipients) ->subject($this->subject()) - ->setBody($this->body(), $this->message()->getContentType()); + ->text($this->text()) + ->html($this->html()); }); }