mirror of
https://github.com/discourse/discourse.git
synced 2024-12-05 02:33:43 +08:00
10 lines
249 B
Plaintext
10 lines
249 B
Plaintext
<% if @disable_email_custom_styles %>
|
|
<%= yield %>
|
|
<% if defined?(html_body) %><%= html_body %><% end %>
|
|
<% else %>
|
|
<%= email_html_template do %>
|
|
<%= yield %>
|
|
<% if defined?(html_body) %><%= html_body %><% end %>
|
|
<% end %>
|
|
<% end %>
|