5
sto usando di Mandrillo Rubino API Gem e hanno il semplice modello per il test seguire:Mandrillo Templating API
<html>
<body>
<h1 mc:edit="header">testastic</h1>
<hr/>
<br/><br/>
<div mc:edit="main_section"></div>
<hr/>
<div mc:edit="footer"></div>
</body>
</html>
Seguendo l'esempio sulla guida di Heroku Ho il codice Ruby seguire:
require 'mandrill'
m = Mandrill::API.new
rendered = m.templates.render 'test-template', [{:header => 'some header text', :main_section => 'The main content block', :footer => '<h3>asdf</h3>'}]
mail(:to => "Jayson Lane <[email protected]>", :subject => "Test Email") do |format|
format.html { rendered['html'] }
#format.text { render "test" }
end
Funziona benissimo e l'email invia il mio modello perfettamente, tuttavia, non sostituisce il modello mc: modifica variabili. Mi sto perdendo qualcosa?
impressionante! Grazie! –