class Mail::Message
def from( val = nil )
mail.from << 'ada@test.lindsaar.net'
mail.from 'Mikel
Example:
object.
Additionally, you can append new addresses to the returned Array like
mail.from #=> ['mikel@test.lindsaar.net']
mail.from 'Mikel
Example:
Also allows you to set the value by passing a value as a parameter
mail.from #=> ['mikel@test.lindsaar.net', 'ada@test.lindsaar.net']
mail.from = 'Mikel
mail.from #=> ['mikel@test.lindsaar.net']
mail.from = 'Mikel
Example:
address specs.
Returns the From value of the mail object as an array of strings of
def from( val = nil ) default :from, val end