- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试弄清楚如何设置我的 Rails 4 应用程序,以便设计邮件程序使用 Postmark 模板通过 Postmark 发送。
我的 gem 文件中有 postmark-rails gem。
我一切正常,除了我不知道如何将确认 token 提供给邮戳。
在 Postmark 中我有这个模板:
To get started, please confirm your account below:
action_url_Value
我不知道如何将以下行而不是操作 url 值放入模板中:
<%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %></div>
我已将以下内容添加到我的 initializer/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
我不太清楚接下来的步骤。有没有人想出如何使用邮戳模板作为设计交易电子邮件的邮件程序?
最佳答案
您需要做的第一件事是在 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
冲洗并重复解锁和密码邮件程序,您只需要知道您将向其发送 token 的 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
关于ruby-on-rails - Rails, Devise, Postmark Gem - 使用邮戳模板设计邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37039500/
我正在尝试使用 PostMarkApp 将我系统的所有电子邮件通知放在一个保护伞下。并利用 Rails gem( postmark-rails 、 postmark-gem 和 mail )。我已成功
我使用 Rails 3 + Postmark-Rails。 起初,我在 postmarkapp.com 上创建了帐户来获取我的 api key 。 我通过电子邮件链接激活了我的签名 [例如,“vita
我正在尝试弄清楚如何设置我的 Rails 4 应用程序,以便设计邮件程序使用 Postmark 模板通过 Postmark 发送。 我的 gem 文件中有 postmark-rails gem。 我一
我想知道如何使用 Postmark 发送电子邮件,而不是在 web.config 中为各种登录控件指定 SMTP: asp:找回密码asp:更改密码 我不想使用 SMTP,Postmark 在我们所有
我使用 django python-postmark 进行邮寄。现在我的问题是我的静态图片没有显示在 Gmail 上。 Gmail 在图像的 src 前面添加一个 url 代理。如果删除前置的 url
如何使用 Sytem.Net.Mail 使用 PostMark SMTP 服务器发送邮件? 我不想使用那里的 API 我已经启动并运行了代码,这些代码之前使用 Gmail SMTP 发送我的邮件。但是
这与此相关question ,但在这种情况下,我返回的不是模型绑定(bind),而是模型绑定(bind)。我正在使用Postmark处理传入的电子邮件,该电子邮件会发布到带有 JSON payload
我今天受了很多伤,试图同时学习两件事……Postmark 和 Rails HTTP 请求的 API。 目标:使用 Heroku 的 Postmark 附加组件发送生产电子邮件。 我正在尝试结合这篇关于
我正在阅读 Postmark 文档,在那里看到了 rails gem (github link)。 我按照说明进行了设置,当我尝试发送电子邮件时遇到了此消息: Provide either email
我是一名优秀的程序员,十分优秀!