https://code.google.com/p/google-apps-script-issues/issues/detail?id=4635
MailApp.sendEmail with {noReply:true} sends emails from "[email protected]". Excellent. But the users see it as the raw email address. So I changed it to {name: 'MyBot', noReply: true} hoping to make the from be "MyBot ". No, that doesn't work. Please provide a small sample script that reliably reproduces the issue. The sample should run as-is or with minimal setup, without external dependencies.
MailApp.sendEmail('[email protected]', 'subject', 'body', {name: 'MyBot', noReply: true});
What steps will reproduce the problem? 1. MailApp.sendEmail('[email protected]', 'subject', 'body', {name: 'MyBot', noReply: true});
What is the expected output? What do you see instead?
What I expect is a sender of "MyBot ". I get a sender of "[email protected]".