instance method
from=
Ruby on Rails 2.3.18
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
from=( *strs )
Destructively sets the “From:” field to the passed array of strings (which should be valid email addresses)
Example:
mail = TMail::Mail.new mail.from = ["mikel@abc.com", "Mikel <mikel@xyz.com>"] mail.from #=> ["mikel@abc.org", "mikel@xyz.org"] mail['from'].to_s #=> "mikel@abc.com, Mikel <mikel@xyz.com>"
Parameters
-
strsrest
Source
# File actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/interface.rb, line 392
def from=( *strs )
set_string_array_attr 'From', strs
end
Defined in actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/interface.rb line 392
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in TMail::Mail