Send a message again as a new one
A mail the far end rejected, or one that went to an address with a typo in it, is a mail you want to send again -- not forward, and not reply to. Doing it by hand meant a new message and copying five fields across. "Compose as new" sits with Reply and Forward, in the message menu and in the list's right-click menu. It opens a composer holding the recipients the message had, its Reply-To, its subject with nothing prefixed to it, its body with nothing wrapped around it, and its attachments. What makes it a new mail is what it leaves behind. `draftId` stays null, or sending would destroy the message it was made from. `inReplyTo`, `references`, `relatedEmailId` and `relatedKeyword` stay null, so it hangs off no thread and sending it marks the original neither answered nor forwarded. The Message-ID is the server's and the date is stamped at build time, so both are new without anything asking for them -- the send path needed no changes at all. A message you sent is composed as the identity you sent it as. One somebody else sent has no identity of yours to match, and guessing from whom it was addressed to would put the resend behind an alias that was only ever the receiving end, so that case takes the account's default. No signature is added. The body is the one that was sent, which already ends in whatever signature went with it, and appending the identity's would give it two. Closes #176
This commit is contained in:
@@ -323,6 +323,11 @@ minimisable and maximisable; full-screen on mobile.
|
||||
- **Drafts** save as you type and on close, with the save state shown.
|
||||
- **Quoting** on reply, with the signature placed above or below it, and
|
||||
reply-all as an optional default.
|
||||
- **Compose as new** — the same mail again rather than passed on, for one that
|
||||
bounced or went to a misspelled address. Recipients, Reply-To, subject, body
|
||||
and attachments come across as they stand; the Message-ID, date and threading
|
||||
headers do not, so it sends as a mail that has never been sent, and the
|
||||
original is neither altered nor marked.
|
||||
- **Send and archive**, and **archive on reply**, as options.
|
||||
|
||||
### Undo send, and scheduled send
|
||||
|
||||
Reference in New Issue
Block a user