mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:05:24 +08:00
20 lines
574 B
Ruby
20 lines
574 B
Ruby
# Help us build an email
|
|
module EmailBuilder
|
|
|
|
def build_email(to, email_key, params={})
|
|
params[:site_name] = SiteSetting.title
|
|
params[:base_url] = Discourse.base_url
|
|
params[:user_preferences_url] = "#{Discourse.base_url}/user_preferences"
|
|
|
|
body = I18n.t("#{email_key}.text_body_template", params)
|
|
|
|
# Are we appending an unsubscribe link?
|
|
if params[:add_unsubscribe_link]
|
|
body << "\n"
|
|
body << I18n.t("unsubscribe_link", params)
|
|
end
|
|
|
|
mail to: to, subject: I18n.t("#{email_key}.subject_template", params), body: body
|
|
end
|
|
|
|
end |