0
Googleスクリプトを実行するたびに、このメッセージが表示されます。テストリストファイルにGoogleのデータにアクセスするための許可が必要
- テストリストファイルには、Googleのデータにアクセスするための許可が必要です。
私はサードパーティのアプリケーションから削除しましたが、それでもポップアップを続けます。私はすべての拒否された電子メールを集めるためにスクリプトを実行しようとしていました。以下はスクリプトです。何かがどこかに埋め込まれていて、私はどこにいるのか分からない。
function getBouncedEmails() {
/* Written by Amit Agarwal */
/* Email: [email protected] */
// Write the bounced email report to a Google SpreadsheetApp
/var sheet = SpreadsheetApp.getActiveSheet();
sheet.getRange(2, 1, sheet.getLastRow(), sheet.getLastColumn()).clearContent();
// Find all emails returned via Gmail Mailer Maemon
var query = "from:([email protected] OR [email protected])";
// Get the most recent 1000 bounced email messages in Gmail
GmailApp.search(query, 0, 1000).forEach(function(thread) {
thread.getMessages().forEach(function(message) {
if (message.getFrom().indexOf("mailer-daemon") !== -1) {
var body = message.getPlainBody();
Get the bounced email address from the body
var matches = body.match(/Delivery to[\s\S]+?(\S+\@\S+)\s([\s\S]+?)----- Original Message/);
}
});
});
}