Methods
E
S
Instance Public methods
exercise_url_for(options)
# File actionmailer/test/url_test.rb, line 27
def exercise_url_for(options)
  @options = options
  @url = url_for(@options)
  mail(from: 'from@example.com', to: 'to@example.com', subject: 'subject')
end
signed_up_with_url(recipient)
# File actionmailer/test/url_test.rb, line 20
def signed_up_with_url(recipient)
  @recipient   = recipient
  @welcome_url = url_for host: "example.com", controller: "welcome", action: "greeting"
  mail(to: recipient, subject: "[Signed up] Welcome #{recipient}",
    from: "system@loudthinking.com", date: Time.local(2004, 12, 12))
end