我花了一天又一天的时间来弄清楚如何通过设计在注册会员之间建立良好的消息传递系统。
但在所有情况下,这些 gem 都已过时并且它们不支持 rails3。
如果你们正在尝试制作包含这些功能的系统。你怎么做?
- 会员注册(设计)
- 私人消息系统(带有行动邮件程序)
我花了一天又一天的时间来弄清楚如何通过设计在注册会员之间建立良好的消息传递系统。
但在所有情况下,这些 gem 都已过时并且它们不支持 rails3。
如果你们正在尝试制作包含这些功能的系统。你怎么做?
https://github.com/ging/mailboxer?
/config/initializer/mailboxer.rb :
Mailboxer.setup do |config|
config.uses_emails = true
config.default_from = "no-reply@youraddress.com"
end
最小模型
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
acts_as_messageable
attr_accessible :email, :password, :password_confirmation, :remember_me
def name
email
end
def mailboxer_email(object)
email
end
end
当然还有标准的邮件配置。
为什么要尝试使用 ActionMailer?您是否在应用程序内发送电子邮件或消息?如果您只是在应用程序中进行私人消息传递,您应该能够创建一个PrivateMessage
类:
class PrivateMessage
has_one :sender, :class => 'User'
has_one :recipient, :class => 'User'
end