Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Mail ¶
type Mail interface { // Attach attaches files to the Mail. Attach(files []string) Mail // Bcc adds a "blind carbon copy" address to the Mail. Bcc(addresses []string) Mail // Cc adds a "carbon copy" address to the Mail. Cc(addresses []string) Mail // Content set the content of Mail. Content(content Content) Mail // From set the sender of Mail. From(address Address) Mail // Queue a given Mail Queue(mailable ...Mailable) error // Send the Mail Send(mailable ...Mailable) error // Subject set the subject of Mail. Subject(subject string) Mail // To set the recipients of Mail. To(addresses []string) Mail }
Click to show internal directories.
Click to hide internal directories.