Hi guys!
I used action mailer in my project,in that the from ID show always my own ID.I need it show some default ID like.,from@gmail.com
Here my coding,
In my set_mailer.rb
ActionMailer::Base.smtp_settings = { :address => "smtp.gmail.com", :port => 587, :domain => "gmail.com", :user_name => "My_personal_ID", :password => "********", :authentication => "plain", :enable_starttls_auto => true }
Here my mailer code:
class EmployeeMailer < ActionMailer::Base default from: "from@shriramits.com" def employee_creation(user) @employee=user attachments["logo.png"] = File.read("#{Rails.root}/app/assets/images/logo.png") mail(:to => user.eamil, :subject => "Registered") end end
Please give the solution…!
Read this page: Action Mailer Basics — Ruby on Rails Guides
Walter