Skip to content

Commit

Permalink
Add to and bcc to contract (#19955)
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandobandeira authored and taylorotwell committed Jul 7, 2017
1 parent a64963f commit 3f69b1e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Illuminate/Contracts/Mail/Mailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@

interface Mailer
{
/**
* Begin the process of mailing a mailable class instance.
*
* @param mixed $users
* @return \Illuminate\Mail\PendingMail
*/
public function to($users);

/**
* Begin the process of mailing a mailable class instance.
*
* @param mixed $users
* @return \Illuminate\Mail\PendingMail
*/
public function bcc($users);

/**
* Send a new message when only a raw text part.
*
Expand Down

0 comments on commit 3f69b1e

Please sign in to comment.