我想弄清楚如何從我的Rails 4應用程序發送交易電子郵件。Rails 4 - 郵戳集成
我已經找到了postmark gem的教程,但是我正努力彌補教程中假定的內容(在哪裏建議的步驟!)和我所知道的之間的差距。
我已經安裝了紅寶石和我的Gemfile導軌寶石:
gem 'postmark-rails', '~> 0.13.0'
gem 'postmark'
我已經加入了郵戳配置我的config/application.rb中:
config.action_mailer.delivery_method = :postmark
config.action_mailer.postmark_settings = { :api_token => ENV['POSTMARKKEY'] }
我想嘗試在郵戳中製作和使用電子郵件模板。
在郵戳寶石文檔的說明說,我需要:
Create an instance of Postmark::ApiClient to start sending emails.
your_api_token = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
client = Postmark::ApiClient.new(your_api_token)
我不知道如何做到這一步?我在哪裏寫第二行?我有我的API令牌存儲在我的配置。我不知道如何製作郵戳api客戶端的實例。
任何人都可以指向下一步(或更詳細的教程)嗎?