function changesender() {
var aliases = GmailApp.getAliases()
Logger.log(aliases); //returns the list of aliases you own
Logger.log(aliases[0]); //returns the alias located at position 0 of the aliases array
GmailApp.sendEmail('[email protected]','From an alias', 'A message from an alias!', {'from': aliases[0]});
}
https://stackoverflow.com/questions/13885290/it-it-possible-to-change-the-from-address-when-using-sendemail
미리 지메일 설정에서 발송자 메일을 설정해두어야 한다.