xxxxxxxxxx
Mail::to($email)
->cc(['name1@domain.com','name2@domain.com'])
->send(new document());
xxxxxxxxxx
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->from('example@example.com')
->markdown('emails.orders.shipped', [
'url' => $this->orderUrl,
]);
}
xxxxxxxxxx
@verbatim
<div class="container">
Hello, {{ name }}.
</div>
@endverbatim