Created
January 2, 2013 20:43
-
-
Save ztmr/4437818 to your computer and use it in GitHub Desktop.
# ChicagoBoss outgoing mail controller versus localization, internalization, and unicode. When the mail view template is in Unicode, we have to override Content-Type by hand as well as we have to encode headers (especially Subject) to declare it's encoding and to be base64-encoded. Another problem is that since we "hardcode" the "text/html" cont…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module (demo_outgoing_mail_controller). | |
-export ([register_confirm/2]). | |
-define (DEMO_MAIL_FROM, "[email protected]"). | |
-define (DEMO_MAIL_NAME, "DEMO Application"). | |
%% Lang is not neccessarily the same as User:lang (), | |
%% but rather the language of the sign-up form | |
register_confirm (User, Lang) -> | |
SubjOrig = ?DEMO_MAIL_NAME ++ "Sign-Up Confirmation", | |
{From, To, Headers} = hdr_prepare (User:email (), Lang, SubjOrig), | |
{ok, From, To, Headers, [{user, User}]}. | |
%%------------------------------------------------- | |
%% Helper functions, not a sender action! | |
%%------------------------------------------------- | |
hdr_prepare (To, Lang, SubjOrig) -> | |
hdr_prepare (To, Lang, SubjOrig, []). | |
hdr_prepare (To, Lang, SubjOrig, SubjTail) -> | |
From = ?DEMO_MAIL_FROM, | |
HumanFrom = string:join ([?DEMO_MAIL_NAME, " <", From, ">"], ""), | |
SubjLocal = demo_i18n:translate (SubjOrig, Lang), | |
SubjFull = case SubjTail of | |
[] -> SubjLocal; | |
_ -> lists:concat ([SubjLocal, ": ", SubjTail]) | |
end, | |
SubjB64 = base64:encode_to_string (SubjFull), | |
Subject = string:join (["=?UTF-8?B?", SubjB64, "?="], ""), | |
Headers = [ | |
{"To", To}, {"From", HumanFrom}, | |
{"Subject", Subject}, {"Content-Language", Lang}, | |
{"Content-Type", "text/html; charset=UTF-8"} | |
], | |
{From, To, Headers}. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment