我使用谷歌脚本创建了一个小型邮件应用程序。一切都很好,但bcc领域。电子邮件将发送到目标,但不会发送密件抄送。当我用cc替换它时,事情就开始正常工作了。
MailApp.sendEmail({
to:"email@example.com",
subject: "subject",
bcc: "email2@example.com",
htmlBody: body,
name: 'sample',
attachments: [iCard.getAs(MimeType.PDF), samplePaper.getAs(MimeType.PDF), instruction.getAs(MimeType.PDF)]
})