Name placeholder for standard replies

This commit is contained in:
M66B 2018-09-07 13:04:54 +00:00
parent e8b8a8a71c
commit 7b353482f6
1 changed files with 7 additions and 1 deletions

View File

@ -751,8 +751,14 @@ public class FragmentCompose extends FragmentEx {
if ("reply".equals(action) || "reply_all".equals(action)) { if ("reply".equals(action) || "reply_all".equals(action)) {
String text = ""; String text = "";
if (answer > 0) if (answer > 0) {
text = db.answer().getAnswer(answer).text; text = db.answer().getAnswer(answer).text;
String name = "";
if (draft.to != null && draft.to.length > 0)
name = ((InternetAddress) draft.to[0]).getPersonal();
text = text.replace("$name$", name);
}
draft.subject = context.getString(R.string.title_subject_reply, ref.subject); draft.subject = context.getString(R.string.title_subject_reply, ref.subject);
body = String.format("%s<br><br>%s %s:<br><br>%s", body = String.format("%s<br><br>%s %s:<br><br>%s",
text.replaceAll("\\r?\\n", "<br />"), text.replaceAll("\\r?\\n", "<br />"),