MD
Size: a a a
MD
EG
MD
MR
MD
EG
А
EG
EG
MD
EG
// Next we will set all of the global addresses on this mailer, which allows
// for easy unification of all "from" addresses as well as easy debugging
// of sent messages since these will be sent to a single email address.
foreach (['from', 'reply_to', 'to', 'return_path'] as $type) {
$this->setGlobalAddress($mailer, $config, $type);
}
MD
// Next we will set all of the global addresses on this mailer, which allows
// for easy unification of all "from" addresses as well as easy debugging
// of sent messages since these will be sent to a single email address.
foreach (['from', 'reply_to', 'to', 'return_path'] as $type) {
$this->setGlobalAddress($mailer, $config, $type);
}
EG
EG
MD
EG
MD
EG
Mail::to(config('mail.to.address'))->send(new Feedback($request->name, $request->email, $request->message));
Mail::send(new Feedback($request->name, $request->email, $request->message));