From bdd4f7ad89faf211d7f4662d68ea3b1946dd47c5 Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Fri, 1 Dec 2017 22:06:55 -0800 Subject: [PATCH] =?UTF-8?q?Improve=20=E2=80=9Cno=20sent=20folder=E2=80=9D?= =?UTF-8?q?=20message=20to=20reference=20Folder=20prefs=20#379?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/flux/tasks/send-draft-task.es6 | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app/src/flux/tasks/send-draft-task.es6 b/app/src/flux/tasks/send-draft-task.es6 index b9876cf39..326ea9da9 100644 --- a/app/src/flux/tasks/send-draft-task.es6 +++ b/app/src/flux/tasks/send-draft-task.es6 @@ -111,13 +111,15 @@ export default class SendDraftTask extends Task { let errorDetail = null; if (key === 'no-sent-folder') { - errorMessage = "We couldn't find a Sent folder in your account."; + errorMessage = + 'Your `Sent Mail` folder could not be automatically detected. Visit Preferences > Folders to choose a Sent folder and then try again.'; errorDetail = - 'In order to send mail through Mailspring, your email account must have a Sent Mail folder.'; + 'In order to send mail through Mailspring, your email account must have a Sent Mail folder. You can specify a Sent folder manually by visiting Preferences > Folders and choosing a folder name from the dropdown menu.'; } else if (key === 'no-trash-folder') { - errorMessage = "We couldn't find a Sent folder in your account."; + errorMessage = + 'Your `Trash` folder could not be automatically detected. Visit Preferences > Folders to choose a Trash folder and then try again.'; errorDetail = - 'In order to send mail through Mailspring, your email account must have a Trash folder.'; + 'In order to send mail through Mailspring, your email account must have a Trash folder. You can specify a Trash folder manually by visiting Preferences > Folders and choosing a folder name from the dropdown menu.'; } else if (key === 'send-partially-failed') { const [smtpError, emails] = debuginfo.split(':::'); errorMessage =