2013-02-06 03:16:51 +08:00
|
|
|
class EmailLog < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
validates_presence_of :email_type
|
|
|
|
validates_presence_of :to_address
|
|
|
|
|
|
|
|
after_create do
|
|
|
|
# Update last_emailed_at if the user_id is present
|
2013-03-01 02:54:12 +08:00
|
|
|
User.update_all("last_emailed_at = CURRENT_TIMESTAMP", id: user_id) if user_id.present?
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
2013-03-18 03:08:38 +08:00
|
|
|
|
2013-04-04 01:25:52 +08:00
|
|
|
def self.count_per_day(sinceDaysAgo = 30)
|
|
|
|
where('created_at > ?', sinceDaysAgo.days.ago).group('date(created_at)').order('date(created_at)').count
|
2013-03-18 03:08:38 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|