Sha256: 94e5245aae014c3aa0222a40fdb2bb704fa6e07d816772c7d313931beedec66e

Contents?: true

Size: 368 Bytes

Versions: 1

Compression:

Stored size: 368 Bytes

Contents

require 'action_mailer'

class SimpleSmtpTestMailer < ActionMailer::Base
  def test_email(to, body='This message was generated by the Simple SMTP Test program for Ruby on Rails.')
    from = ENV['MAILER_FROM_EMAIL'] || 'do-not-reply@example.com'
    subject = 'This is a test email from Simple SMTP test'
    mail to:to, from:from, subject:subject, body:body
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simple_smtp_test-1.1 lib/simple_smtp_test/simple_smtp_test_mailer.rb