interface Illuminate / Contracts / Mail / Mailable
You are viewing an older version of the documentation. For the latest, please visit master documentation.

Mailable

Methods

public

send ( $mailer ) : void

Send the message using the given mailer.

Parameters

public

queue ( Factory $queue ) : mixed

Queue the given message.

Parameters

public

later ( $delay , Factory $queue ) : mixed

Deliver the queued message after the given delay.

Parameters

public

cc ( $address , $name ) : self

Set the recipients of the message.

Parameters

  • $address object|array|string
  • $name string|null
public

bcc ( $address , $name ) : $this

Set the recipients of the message.

Parameters

  • $address object|array|string
  • $name string|null
public

to ( $address , $name ) : $this

Set the recipients of the message.

Parameters

  • $address object|array|string
  • $name string|null
public

locale ( $locale ) : $this

Set the locale of the message.

Parameters

  • $locale string
public

mailer ( $mailer ) : $this

Set the name of the mailer that should be used to send the message.

Parameters

  • $mailer string