Created
September 30, 2014 16:00
-
-
Save demoore/61da744c44929ba8467a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sendwithus_ruby_action_mailer' | |
module SomeModule | |
class Notifier < SendWithUsMailer::Base | |
def welcome | |
mail( | |
email_id: 'tem_RpQWPHNNuUoekvKEPEo', | |
recipient_address: '[email protected]', | |
from_name: 'Wut', | |
from_address: '[email protected]', | |
reply_to: '[email protected]', | |
) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment