我如何在 Google Apps 脚本中找到并向收件箱中的所有电子邮件发送电子邮件?

How would I find and then send an email to all of the emails in my inbox in Google Apps Script?

我正在尝试使用 Google Apps 脚本制作 GMail 订阅服务。我希望它向收件箱中的每一封电子邮件发送一封电子邮件。我该怎么做?

function replyToInboxMessages() {
  const threads = GmailApp.getInboxThreads();
  threads.forEach(t => {
    t.getMessages().forEach(m =>{
      GmailApp.sendEmail(m.getFrom(),'Return Email','Quit Sending us Email');
    });
  });
}