-
Notifications
You must be signed in to change notification settings - Fork 11.1k
Commit
It doesn’t make any sense to have these on notifications. If you need this you probably should be using Markdown based mailable classes in Laravel 5.4.
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,20 +32,6 @@ class MailMessage extends SimpleMessage | |
*/ | ||
public $from = []; | ||
|
||
/** | ||
* The recipient information for the message. | ||
* | ||
* @var array | ||
*/ | ||
public $to = []; | ||
|
||
/** | ||
* The "cc" recipients of the message. | ||
* | ||
* @var array | ||
*/ | ||
public $cc = []; | ||
|
||
/** | ||
* The "reply to" information for the message. | ||
* | ||
|
@@ -122,32 +108,6 @@ public function from($address, $name = null) | |
return $this; | ||
} | ||
|
||
/** | ||
* Set the recipient address for the mail message. | ||
* | ||
* @param string|array $address | ||
* @return $this | ||
*/ | ||
This comment has been minimized.
Sorry, something went wrong.
antonkomarev
Contributor
|
||
public function to($address) | ||
{ | ||
$this->to = $address; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Set the recipients of the message. | ||
* | ||
* @param string|array $address | ||
* @return $this | ||
*/ | ||
public function cc($address) | ||
{ | ||
$this->cc = $address; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Set the "reply to" address of the message. | ||
* | ||
|
Have you tried to send bcc only e-mails via Mailgun? I'm pretty sure it's not possible.