用于创建和包装传递行为的助手,由 DeliveryMethods
使用。
方法
实例公共方法
add_delivery_method(symbol, klass, default_options = {}) 链接
使用给定的符号作为别名和提供的默认选项,通过给定的类添加新的传递方法。
add_delivery_method :sendmail, Mail::Sendmail,
location: '/usr/sbin/sendmail',
arguments: %w[ -i ]
源代码: 显示 | 在 GitHub 上
# File actionmailer/lib/action_mailer/delivery_methods.rb, line 51 def add_delivery_method(symbol, klass, default_options = {}) class_attribute(:"#{symbol}_settings") unless respond_to?(:"#{symbol}_settings") public_send(:"#{symbol}_settings=", default_options) self.delivery_methods = delivery_methods.merge(symbol.to_sym => klass).freeze end