-
Docs
Backend
-
Behaviors
-
Classes
-
Controllers
-
Database
-
Seeds
-
-
Facades
-
FormWidgets
-
Helpers
-
Exception
- Backend
-
-
Models
-
ReportWidgets
-
Skins
-
Traits
-
Widgets
- ServiceProvider
-
-
Cms
-
Classes
- Asset
- AutoDatasource
- CmsCompoundObject
- CmsController
- CmsException
- CmsObject
- CmsObjectCollection
- CodeBase
- CodeParser
- ComponentBase
- ComponentHelpers
- ComponentManager
- ComponentPartial
- Content
- Controller
- Layout
- LayoutCode
- MediaLibrary
- MediaLibraryItem
- MediaViewHelper
- Meta
- ObjectMemoryCache
- Page
- PageCode
- Partial
- PartialCode
- PartialStack
- Router
- Theme
- ThemeManager
-
Components
-
Contracts
-
Controllers
-
Facades
-
FormWidgets
-
Helpers
-
Models
-
ReportWidgets
-
Traits
-
Twig
- ComponentNode
- ComponentTokenParser
- ContentNode
- ContentTokenParser
- DebugExtension
- DefaultNode
- DefaultTokenParser
- Extension
- FlashNode
- FlashTokenParser
- FrameworkNode
- FrameworkTokenParser
- Loader
- PageNode
- PageTokenParser
- PartialNode
- PartialTokenParser
- PlaceholderNode
- PlaceholderTokenParser
- PutNode
- PutTokenParser
- ScriptsNode
- ScriptsTokenParser
- StylesNode
- StylesTokenParser
-
Widgets
- ServiceProvider
-
-
System
-
Behaviors
-
Classes
-
Console
-
Controllers
-
Database
-
Helpers
-
Models
-
ReportWidgets
-
Traits
-
Twig
- ServiceProvider
-
-
Events
-
backend
-
ajax
-
filter
-
form
-
list
-
menu
-
page
-
user
-
-
cms
-
ajax
-
block
-
combiner
-
component
-
object
-
page
-
router
-
template
-
theme
-
-
halcyon
-
datasource
-
-
mailer
-
media
-
model
-
system
-
assets
-
console
-
mirror
-
theme
-
-
reportwidgets
-
settings
- extendConfigFile
-
-
translator
-
-
Library
-
Argon
-
Auth
-
Models
- AuthException
- Manager
-
-
Config
-
Cookie
-
Middleware
-
-
Database
-
Attach
-
Behaviors
-
Concerns
-
Connections
-
Connectors
-
Models
-
Relations
-
Schema
-
Traits
-
Updates
- README
- Builder
- Collection
- DatabaseServiceProvider
- DataFeed
- Dongle
- MemoryCache
- Model
- ModelBehavior
- ModelException
- NestedTreeScope
- Pivot
- QueryBuilder
- SortableScope
- TreeCollection
- Updater
-
-
Events
-
Exception
-
Extension
-
Filesystem
-
Flash
-
Foundation
-
Bootstrap
-
Console
-
Exception
-
Http
-
Middleware
- Kernel
-
-
Providers
- Application
- Maker
-
-
Halcyon
-
Datasource
-
Exception
-
Processors
-
Traits
- README
- Builder
- Collection
- HalcyonServiceProvider
- MemoryCacheManager
- MemoryRepository
- Model
-
-
Html
-
Mail
-
Network
-
Parse
-
Router
-
Scaffold
-
Support
-
Translation
-
- Documentation
- API
- Library
- Mailable
October\Rain\Mail\Mailable
Source: ~/vendor/october/rain/src/Mail/Mailable.php
Extends:
- Illuminate\Mail\Mailable
Implements:
- Illuminate\Contracts\Support\Renderable
- Illuminate\Contracts\Mail\Mailable
Generic mailable class.
Public properties
public string|null $connection
The name of the connection the job should be sent to.
public string|null $queue
The name of the queue the job should be sent to.
public string|null $chainConnection
The name of the connection the chain should be sent to.
public string|null $chainQueue
The name of the queue the chain should be sent to.
public DateTimeInterface|\DateInterval|int|null $delay
The number of seconds before the job should be made available.
public array $chained
The jobs that should run if this job is successful.
Show inherited public properties
Inherited public properties
- public array $from - defined in Illuminate\Mail\Mailable. The person the message is from.
- public array $to - defined in Illuminate\Mail\Mailable. The "to" recipients of the message.
- public array $cc - defined in Illuminate\Mail\Mailable. The "cc" recipients of the message.
- public array $bcc - defined in Illuminate\Mail\Mailable. The "bcc" recipients of the message.
- public array $replyTo - defined in Illuminate\Mail\Mailable. The "reply to" recipients of the message.
- public string $subject - defined in Illuminate\Mail\Mailable. The subject of the message.
- public string $view - defined in Illuminate\Mail\Mailable. The view to use for the message.
- public string $textView - defined in Illuminate\Mail\Mailable. The plain text view to use for the message.
- public array $viewData - defined in Illuminate\Mail\Mailable. The view data for the message.
- public array $attachments - defined in Illuminate\Mail\Mailable. The attachments for the message.
- public array $rawAttachments - defined in Illuminate\Mail\Mailable. The raw attachments for the message.
- public array $callbacks - defined in Illuminate\Mail\Mailable. The callbacks for the message.
Protected properties
There are no protected properties in the class.
Show inherited protected properties
Inherited protected properties
- protected string $markdown - defined in Illuminate\Mail\Mailable. The Markdown template for the message (if applicable).
Public methods
public array __sleep()
Prepare the instance for serialization.
public void __wakeup()
Restore the model after serialization.
public $this allOnConnection(string|null $connection)
Set the desired connection for the chain.
Parameters
- string|null $connection
public $this allOnQueue(string|null $queue)
Set the desired queue for the chain.
Parameters
- string|null $queue
public $this build()
Build the message.
public array buildViewData()
Build the view data for the message.
public $this chain(array $chain)
Set the jobs that should run if this job is successful.
Parameters
- array $chain
public $this delay(DateTimeInterface|\DateInterval|int|null $delay)
Set the desired delay for the job.
Parameters
- DateTimeInterface|\DateInterval|int|null $delay
public void dispatchNextJobInChain()
Dispatch the next job on the chain.
public $this onConnection(string|null $connection)
Set the desired connection for the job.
Parameters
- string|null $connection
public $this onQueue(string|null $queue)
Set the desired queue for the job.
Parameters
- string|null $queue
public $this withSerializedData(array $data)
Set serialized view data for the message.
Parameters
- array $data
Inherited public methods
- public $this __call(string $method, array $parameters) - defined in Illuminate\Mail\Mailable. Dynamically bind parameters to the message.
- public $this attach(string $file, array $options=array()) - defined in Illuminate\Mail\Mailable. Attach a file to the message.
- public $this attachData(string $data, string $name, array $options=array()) - defined in Illuminate\Mail\Mailable. Attach in-memory data as an attachment.
- public $this bcc(object|array|string $address, string|null $name=NULL) - defined in Illuminate\Mail\Mailable. Set the recipients of the message.
- public $this cc(object|array|string $address, string|null $name=NULL) - defined in Illuminate\Mail\Mailable. Set the recipients of the message.
- public $this from(object|array|string $address, string|null $name=NULL) - defined in Illuminate\Mail\Mailable. Set the sender of the message.
- public bool hasBcc(object|array|string $address, string|null $name=NULL) - defined in Illuminate\Mail\Mailable. Determine if the given recipient is set on the mailable.
- public bool hasCc(object|array|string $address, string|null $name=NULL) - defined in Illuminate\Mail\Mailable. Determine if the given recipient is set on the mailable.
- public bool hasFrom(object|array|string $address, string|null $name=NULL) - defined in Illuminate\Mail\Mailable. Determine if the given recipient is set on the mailable.
- public bool hasReplyTo(object|array|string $address, string|null $name=NULL) - defined in Illuminate\Mail\Mailable. Determine if the given recipient is set on the mailable.
- public bool hasTo(object|array|string $address, string|null $name=NULL) - defined in Illuminate\Mail\Mailable. Determine if the given recipient is set on the mailable.
- public mixed later(DateTimeInterface|\DateInterval|int $delay, Illuminate\Contracts\Queue\Factory $queue) - defined in Illuminate\Mail\Mailable. Deliver the queued message after the given delay.
- public $this markdown(string $view, array $data=array()) - defined in Illuminate\Mail\Mailable. Set the Markdown template for the message.
- public $this priority(int $level=3) - defined in Illuminate\Mail\Mailable. Set the priority of this message.
- public mixed queue(Illuminate\Contracts\Queue\Factory $queue) - defined in Illuminate\Mail\Mailable. Queue the message for sending.
- public Illuminate\View\View render() - defined in Illuminate\Mail\Mailable. Render the mailable into a view.
- public $this replyTo(object|array|string $address, string|null $name=NULL) - defined in Illuminate\Mail\Mailable. Set the "reply to" address of the message.
- public void send(Illuminate\Contracts\Mail\Mailer $mailer) - defined in Illuminate\Mail\Mailable. Send the message using the given mailer.
- public $this subject(string $subject) - defined in Illuminate\Mail\Mailable. Set the subject of the message.
- public $this text(string $textView, array $data=array()) - defined in Illuminate\Mail\Mailable. Set the plain text view for the message.
- public $this to(object|array|string $address, string|null $name=NULL) - defined in Illuminate\Mail\Mailable. Set the recipients of the message.
- public $this view(string $view, array $data=array()) - defined in Illuminate\Mail\Mailable. Set the view and view data for the message.
- public $this with(string|array $key, mixed $value=NULL) - defined in Illuminate\Mail\Mailable. Set the view data for the message.
- public $this withSwiftMessage(callable $callback) - defined in Illuminate\Mail\Mailable. Register a callback to be called with the Swift message instance.
Protected methods
protected $this buildSubject(Illuminate\Mail\Message $message)
Set the subject for the message.
Parameters
- Illuminate\Mail\Message $message
protected mixed getPropertyValue(ReflectionProperty $property)
Get the property value for the given property.
Parameters
- ReflectionProperty $property
protected Illuminate\Database\Eloquent\Builder getQueryForModelRestoration(Illuminate\Database\Eloquent\Model $model, array|int $ids)
Get the query for restoration.
Parameters
- Illuminate\Database\Eloquent\Model $model
- array|int $ids
protected mixed getRestoredPropertyValue(mixed $value)
Get the restored property value after deserialization.
Parameters
- mixed $value
protected mixed getSerializedPropertyValue(mixed $value)
Get the property value prepared for serialization.
Parameters
- mixed $value
protected Illuminate\Database\Eloquent\Collection restoreCollection(Illuminate\Contracts\Database\ModelIdentifier $value)
Restore a queueable collection instance.
Parameters
- Illuminate\Contracts\Database\ModelIdentifier $value
Show inherited protected methods
Inherited protected methods
- protected array addressesToArray(object|array|string $address, string|null $name) - defined in Illuminate\Mail\Mailable. Convert the given recipient arguments to an array.
- protected $this buildAttachments(Illuminate\Mail\Message $message) - defined in Illuminate\Mail\Mailable. Add all of the attachments to the message.
- protected $this buildFrom(Illuminate\Mail\Message $message) - defined in Illuminate\Mail\Mailable. Add the sender to the message.
- protected string buildMarkdownText(Illuminate\Mail\Markdown $markdown, array $data) - defined in Illuminate\Mail\Mailable. Build the text view for a Markdown message.
- protected array buildMarkdownView() - defined in Illuminate\Mail\Mailable. Build the Markdown view for the message.
- protected $this buildRecipients(Illuminate\Mail\Message $message) - defined in Illuminate\Mail\Mailable. Add all of the recipients to the message.
- protected array|string buildView() - defined in Illuminate\Mail\Mailable. Build the view for the message.
- protected bool hasRecipient(object|array|string $address, string|null $name=NULL, string $property='to') - defined in Illuminate\Mail\Mailable. Determine if the given recipient is set on the mailable.
- protected object normalizeRecipient(mixed $recipient) - defined in Illuminate\Mail\Mailable. Convert the given recipient into an object.
- protected $this runCallbacks(Illuminate\Mail\Message $message) - defined in Illuminate\Mail\Mailable. Run the callbacks for the message.
- protected $this setAddress(object|array|string $address, string|null $name=NULL, string $property='to') - defined in Illuminate\Mail\Mailable. Set the recipients of the message.