class Quartz::Message

Defined in:

quartz_mailer/message.cr

Class Method Summary

Instance Method Summary

Class Method Detail

def self.address(name : String, email : String) #

[View source]
def self.address(email : String) #

[View source]

Instance Method Detail

def _bcc : Array(EMail::Address) #

[View source]
def _cc : Array(EMail::Address) #

[View source]
def _from : Address | Nil #

[View source]
def _headers : Hash(String, String) #

[View source]
def _html : String #

[View source]
def _subject : String #

[View source]
def _text : String #

[View source]
def _to : Array(EMail::Address) #

[View source]
def bcc(name : String, email : String) : Nil #

[View source]
def bcc(email : String) : Nil #

[View source]
def bcc(address : Address) : Nil #

[View source]
def bcc(addresses : Array(Address)) : Nil #

[View source]
def body(_text : String) : Nil #

for backwards compatibility


[View source]
def cc(name : String, email : String) : Nil #

[View source]
def cc(email : String) : Nil #

[View source]
def cc(address : Address) : Nil #

[View source]
def cc(addresses : Array(Address)) : Nil #

[View source]
def from(name : String, email : String) : Nil #

[View source]
def from(email : String) : Nil #

[View source]
def from(_from : Address) #

[View source]
def header(name : String, value : String) : Nil #

[View source]
def html(_html : String) : Nil #

[View source]
def remove_bcc_recipient(name : String, email : String) #

[View source]
def remove_bcc_recipient(email : String) #

[View source]
def remove_bcc_recipient(address : Address) #

[View source]
def remove_bcc_recipient(addresses : Array(Address)) #

[View source]
def remove_bcc_recipient(*, email : String) #

[View source]
def remove_cc_recipient(name : String, email : String) #

[View source]
def remove_cc_recipient(email : String) #

[View source]
def remove_cc_recipient(address : Address) #

[View source]
def remove_cc_recipient(addresses : Array(Address)) #

[View source]
def remove_cc_recipient(*, email : String) #

[View source]
def remove_to_recipient(name : String, email : String) #

[View source]
def remove_to_recipient(email : String) #

[View source]
def remove_to_recipient(address : Address) #

[View source]
def remove_to_recipient(addresses : Array(Address)) #

[View source]
def remove_to_recipient(*, email : String) #

[View source]
def subject(_subject : String) : Nil #

[View source]
def text(_text : String) : Nil #

[View source]
def to(name : String, email : String) : Nil #

[View source]
def to(email : String) : Nil #

[View source]
def to(address : Address) : Nil #

[View source]
def to(addresses : Array(Address)) : Nil #

[View source]
def to_email #

[View source]