Rails 2.3.11
Я пытаюсь отправить электронное письмо в стиле активации всякий раз, когда пользователь регистрируется.Письмо успешно отправлено, но имеет неправильный адрес электронной почты «от».Тема, содержание и электронная почта получателя все в порядке.Вместо того, чтобы отправляться с активации @ [домен] .net , они приходят с [логин] @ box570.bluehost.com .
/app / models / franklin.rb:
class Franklin < ActionMailer::Base
def activation(user)
recipients user.email
from "activation@[sub].[domain].net"
subject "[Product] Registration"
body :user => user
end
end
Применимая часть контроллера, которая вызывает его:
@user = User.create(
:first_name => params[:first_name],
:last_name => params[:last_name],
:email => params[:email],
:password => params[:password],
:password_confirmation => params[:password_confirmation],
:user_class => "User"
)
Franklin.deliver_activation(@user)
/ config /environment / development.rb:
# Settings specified here will take precedence over those in config/environment.rb
# In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the webserver when you make code changes.
config.cache_classes = false
# Log error messages when you accidentally call methods on nil.
config.whiny_nils = true
# Show full error reports and disable caching
config.action_controller.consider_all_requests_local = true
config.action_view.debug_rjs = true
config.action_controller.perform_caching = false
config.action_mailer.raise_delivery_errors = true
config.action_mailer.delivery_method = :sendmail
Спасибо!