DDMsgReader: Fix for #499 (error when replying to emails from 'All' or unknown sender)
1 unresolved thread
1 unresolved thread
DDMsgReader: Fix for #499 (closed) - When replying to an email with an unknown sender (empty or "All"), no longer gives the error "Invalid user field: 0"; also, if the sender is unknown, prompts the user for a user name/number/email address to send the reply to.
Merge request reports
Activity
assigned to @rswindell
10083 10089 } 10084 10090 else 10085 10091 { 10086 retObj.sendSucceeded = false; 10087 console.crlf(); 10088 console.print(); 10089 var errorMsg = "\x01n\x01h\x01yThe recipient (\x01w" + pMsgHdr.from + "\x01y) was not found"; 10090 if (wasNetMailOrigin) 10091 errorMsg += " and no network address was found for this message"; 10092 errorMsg += "\x01n"; 10093 console.crlf(); 10094 console.pause(); 10092 // If the 'from' username is "All" or blank (which can be the case if a guest sent the email), then 10093 // ask the user where or to whom they want to send the message 10094 if (pMsgHdr.from.length == 0 || pMsgHdr.from.toUpperCase() === "ALL")
Please register or sign in to reply