我使用的是每当gem有一个rails cron作业发送电子邮件。一切似乎都工作得很好,我在我的cron.log或我的production.log文件中没有错误,但我从未收到过电子邮件。我也检查了邮件地址是否正确。
任何帮助都是感激的。
production.log文件包含如下内容:
Connecting to database specified by database.yml
Rendered email_mailer/send_birthday_reminders.html.erb (5.3ms)
Sent mail to tomcaflisch@gmail.com (409ms)
这是我的每当gem时间表。rb文件
set :output, "#{path}/log/cron.log"
every :hour do
runner "BirthdayRemindersController.send_birthday_email_reminders"
end
birthday_reminders_controller.rb
class BirthdayRemindersController < ApplicationController
# cron job that sends birthday reminders
def self.send_birthday_email_reminders
users = User.all
email_addresses = []
users.each_with_index do |user, i|
if user.user_details.birthday_reminders == true
email_addresses[i] = get_primary_email(user)
end
end
p "email_addresses to send to:"
p email_addresses
users.each do |user|
p "this user is"
p user.user_details.full_name
if user.user_details.birthday.try(:strftime, "%m") == Date.today.strftime("%m") && user.user_details.birthday.try(:strftime, "%d") == Date.today.strftime("%d")
p "reminder sent"
EmailMailer.send_birthday_reminders(user, email_addresses).deliver
end
end
end
end
email_mailer。rb片段
class EmailMailer < ActionMailer::Base
include ApplicationHelper
default :from => ""FamNFo" <no-reply@mysite.com>"
def send_birthday_reminders(birthday_person, email_addresses)
p "we in send_birthday_reminders mailer"
p email_addresses
@birthday_person = birthday_person
mail(:subject => "Birthday Reminder For The Caflisch Family", :to => email_addresses, :reply_to => email_addresses)
end
end
capistrano的部署。Rb包含
# needed for the 'whenever' gem
set(:whenever_command) { "RAILS_ENV=#{rails_env} bundle exec whenever"}
require "whenever/capistrano"
检查你的垃圾邮件文件夹。为了确保邮件不会在那里结束,在每封邮件中添加一个"退订"链接。
如果您的动作邮件配置指定perform_delivery =false,则可能发生这种情况。您可以在环境文件中查看配置。
如果您的应用程序部署到云服务,那么您可能会收到垃圾邮件文件夹中的电子邮件。他们的整个IP块在Spamhaus
等服务中被注册为垃圾邮件,这是一个明智的预防措施,否则我们会收到比平时更多的垃圾邮件。
您应该在该字段中输入您的服务器的IP地址,以查看您是否被列为垃圾邮件发送者。
如果你是,你可以请求Spamhaus解除封锁。
我发现的另一个大问题是,PATH和rbenv可能没有在CRONTAB中初始化,这取决于您如何设置它。我建议在您的.bashrc
文件
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
这确保如果您使用whenever
调用模型方法,rbenv
和ruby
是完全可用的。