reformat mail again

darcs-hash:20080712204923-84dde-627704bb3a0bb95af3b8fa9ba281a38913e0bbcf.gz
This commit is contained in:
Evan Prodromou 2008-07-12 16:49:23 -04:00
parent 839222dcc8
commit 96b2ef7dd9
1 changed files with 6 additions and 3 deletions

View File

@ -84,9 +84,12 @@ class SubscribeAction extends Action {
$headers['Subject'] = sprintf(_('%1$s is now listening to your notices on %2$s.'), $other->getBestName(),
common_config('site', 'name'));
$body = sprintf(_("%1$s is now listening to your notices on %2$s.\n\n".
"\t3$s\n\n".
"Faithfully yours,\n%2$s\n"), $long_name, common_config('site', 'name'), $other->profileurl);
"\t%3$s\n\n".
"Faithfully yours,\n%4$s\n"),
$long_name,
common_config('site', 'name'),
$other->profileurl,
common_config('site', 'name'));
mail_send($recipients, $headers, $body);
}
}