24 lines
865 B
Ruby
24 lines
865 B
Ruby
module JamRuby
|
|
# UserMailer must be configured to work
|
|
# Some common configs occur in jam_ruby/init.rb
|
|
# Environment specific configs occur in spec_helper.rb in jam-ruby and jam-web (to put it into test mode),
|
|
# and in config/initializers/email.rb in rails to configure sendmail account settings
|
|
# If UserMailer were to be used in another project, it would need to be configured there, as well.
|
|
|
|
# Templates for UserMailer can be found in jam_ruby/app/views/jam_ruby/user_mailer
|
|
class UserMailer < ActionMailer::Base
|
|
include SendGrid
|
|
|
|
layout "auto_mailer"
|
|
|
|
DEFAULT_SENDER = "JamKazam <support@jamkazam.com>"
|
|
|
|
default :from => DEFAULT_SENDER
|
|
|
|
sendgrid_category :use_subject_lines
|
|
#sendgrid_enable :opentrack, :clicktrack # this makes our emails creepy, imo (seth)
|
|
sendgrid_unique_args :env => Environment.mode
|
|
|
|
end
|
|
end
|