Rails,Devise,Postmark Gem - 使用邮戳模板设计邮件

时间:2016-05-04 22:59:52

标签: ruby-on-rails devise postmark

我试图弄清楚如何设置我的Rails 4应用程序,以便设计邮件程序使用邮戳模板发送邮戳。

我的gem文件中有postmark-rails gem。

我已经完成了所有工作,但我无法弄清楚如何将确认令牌用于邮戳。

在邮戳中我有这个模板:

To get started, please confirm your account below:

action_url_Value

我无法弄清楚如何将以下行放入模板而不是动作网址值:

<%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %></div>

我已将以下内容添加到我的初始化程序/ devise.rb中:

config.mailer = 'PostmarkDeviseMailer'

在postmark_devise_mailer.rb中,我有:

class PostmarkDeviseMailer < ActionMailer::Base
  include Devise::Mailers::Helpers

  def message
    mail(
      :subject => 'Hello from Postmark',
      :to  => 'sender@address.com',
      :from => 'sender@address.comm',
      :html_body => '<strong>Hello</strong> dear Postmark user.',
      :track_opens => 'true')
  end
end


  default from: "sender@address.com"

  def confirmation_instructions(record)
    devise_mail(record, :confirmation_instructions)
  end

  def reset_password_instructions(record)
    devise_mail(record, :reset_password_instructions)
  end

  def unlock_instructions(record)
    devise_mail(record, :unlock_instructions)
  end

接下来的步骤对我来说不太清楚。有没有人想出如何使用邮戳模板作为设计交易电子邮件的邮件程序?

2 个答案:

答案 0 :(得分:1)

邮戳服务台的回复是: 遗憾的是,邮戳模板并不适合传统的Rails生态系统。有关详细信息,请参阅我的回复:

https://github.com/wildbit/postmark-rails/issues/53

总而言之,通过使用带有邮戳模板的Postmark API,您可以替换ActionMailer,但将它们混合在一起会带来巨大的挑战。不幸的是,我们从来没有尝试过使用Devise的“ActionMailer”方法,所以我在这里无法帮助你。除非你有充分的理由不这样做,否则我建议使用ActionMailer模板并使用postmark-rails gem作为传递适配器。众所周知,这种方法适用于Devise。如果您有任何问题,请与我们联系。

答案 1 :(得分:1)

您需要做的第一件事是在app/mailers中创建一个自定义邮件程序,在此示例中,它是user_mailer.rb。如果您正在阅读此答案,那么我假设你们俩都有一个邮戳帐户(如果没有抓住的话)这里是一个:Postmark Registration,我假设您已经选择了模板和布局。

要记住的一个重要事项是确保为模板分配别名。可以在模板标题上方的灰色小文本链接中找到一个小链接。

self.template_model中的项目是100%可自定义的,并在布局/模板编辑器中显示为{{product_name}}

class UserMailer < Devise::Mailer
  include PostmarkRails::TemplatedMailerMixin

  helper :application
  include Rails.application.routes.url_helpers
  include Devise::Controllers::UrlHelpers

  default from: 'from_you@something.com'
  default reply_to: 'support@hammer-lane-industries.com' # Optional 

  def confirmation_instructions(record, token, opts={})
    @admin = record
    @token = token
    # this will pass the data via the postmark-api to your template / layout these fields are 100% customizable and can be cahnged in your template / layout
    self.template_model = { product_name: 'your product',
                            username: @user.username,
                            email: @user.email,
                            confirmation_url: user_confirmation_url(@resource, confirmation_token: @token, subdomain: 'add subdomain here if needed'),
                            login_url: login_root_url(subdomain: 'add subdomain here if needed'),
                            trial_length: '14-days',
                            sender_name: 'What ever you want',
                            action_url: user_confirmation_url(@resource, confirmation_token: @token, subdomain: 'add subdomain here if needed'),
                            parent_company_name: 'Your company name',
                            company_address: 'Your address'}
    mail to: @admin.email, postmark_template_alias: 'devise_user_confirmation'
  end
end

冲洗并重复使用解锁和密码邮件程序,您只需要知道将令牌发送到的URL。

要全部完成:

您将需要在设计资源模型中添加一个小块,在此示例中,我使用了user.rb

class User < ApplicationRecord
  devise :database_authenticatable, :confirmable,
         :recoverable, :rememberable, :validatable,
         :timeoutable, :trackable

  def devise_mailer
    UserMailer # Must match your mailer class
  end
end

完成此操作后,重新启动Rails服务器,然后尝试一下!

我希望这可以帮助您将邮戳模板(API)插入Devise mailers