Tag: cpanel

在rails dev环境smtp cpanel上发送电子邮件ruby

我在使用ruby on rails发送电子邮件时遇到问题。 当我使用gmail smtp时,它工作正常,但当我尝试使用我在cpanel中创建的电子邮件时,我似乎无法发送任何电子邮件。 有谁知道如何配置这个? 谢谢。 这是我在初始化文件夹下的mailer_setup.rb ActionMailer::Base.delivery_method = :smtp # be sure to choose SMTP delivery ActionMailer::Base.smtp_settings = { :address => “mail.humouno.com”, :port => 25, :domain => “humouno.com”, :user_name => “info@humouno.com”, :password => “********”, :authentication => “login”, :enable_starttls_auto => true } 这是environment.rb下的development.rb Humouno::Application.configure do config.cache_classes = false config.eager_load = false config.consider_all_requests_local = true […]