我已将localhost配置为通过端口25从我的RoR应用程序发送电子邮件。但是,现在,我想使用个人IP地址/域来发送电子邮件而不是localhost端口25.如果我目前设置的代码,下面是小块
ActionMailer::Base.sendmail_settings = {
:address => "localhost",
:port => 25,
:domain => "www.abcexample.com"
}
以下是我的两个问题: -
请帮助和指导。
提前致谢。