class ActionMailer::Base::LateAttachmentsProxy
Public Instance Methods
[]=(_name, _content)
click to toggle source
# File lib/action_mailer/base.rb, line 759 def []=(_name, _content); _raise_error end
inline()
click to toggle source
# File lib/action_mailer/base.rb, line 758 def inline; self end
Private Instance Methods
_raise_error()
click to toggle source
# File lib/action_mailer/base.rb, line 762 def _raise_error raise RuntimeError, "Can't add attachments after `mail` was called.\n" \ "Make sure to use `attachments[]=` before calling `mail`." end