使用 node-imap 检索电子邮件

use*_*363 7 imap node.js node-imap

这是一个retrieve_email.js连接到我的 gmail 帐户并UNSEEN在某个日期后下载电子邮件的模块。该代码几乎是从[imap模块的示例] 1 中复制的。

const Imap = require('imap');
const inspect = require('util').inspect;
const simpleParser = require('mailparser').simpleParser;

const imap = new Imap({
  user: 'mygmail@gmail.com',
  password: 'mypassword',
  host: 'imap.gmail.com',
  port: 993,
  tls: true
});

function openInbox(callback) {
    imap.openBox('INBOX', true, callback);
};

async function parse_email(body) {
  let parsed = simpleParser(body);
  ...............
};

module.exports = function() {
  imap.once('ready', function() {
    openInbox(function(err, box) {
      if (error) throw err;

      imap.search(['UNSEEN', ['SINCE', 'May 20, 2018']], function(err, results){
        if (err) throw err;
        var f = imap.fetch(results, {bodies: ''});
        f.on('message', function(msg, seqno) {
          console.log('Message #%d', seqno);
          var prefix = '(#' + seqno + ') ';
          msg.on('body', function(stream, info) {
            if (info.which === 'TEXT')
              console.log(prefix + 'Body [%s] found, %d total bytes', inspect(info.which), info.size);
              var buffer = '', count = 0;
              stream.on('data', function(chunk) {
                count += chunk.length;
                buffer += chunk.toString('utf8');
                parse_email(buffer);
                if (info.which === 'TEXT')
                  console.log(prefix + 'Body [%s] (%d/%d)', inspect(info.which), count, info.size);
              });
              stream.once('end', function() {
                if (info.which !== 'TEXT')
                  console.log(prefix + 'Parsed header: %s', inspect(Imap.parseHeader(buffer)));
                else
                  console.log(prefix + 'Body [%s] Finished', inspect(info.which));
              });
          });
          msg.once('attributes', function(attrs) {
            console.log(prefix + 'Attributes: %s', inspect(attrs, false, 8));
          });
          msg.once('end', function() {
            console.log(prefix + 'Finished');
          });
        });

        f.once('error', function(err) {
          console.log('Fetch error: ' + err);
        });

        f.once('end', function() {
          console.log('Done fetching all messages');
          imap.end();
        });

      });
    });
  });

  imap.once('error', function(err) {
    console.log(err);
  });

  imap.once('end', function() {
    console.log('Connection ended');
  });

  imap.connect();
};
Run Code Online (Sandbox Code Playgroud)

当模块被调用时index.js,我可以在调试中看到代码是从上到下扫描的,扫描的最后一行代码是imap.connect()然后返回到下一行index.js,没有连接到gmail帐户,也没有检索的动作电子邮件。上面的代码有什么问题?

更新:socket.connect()调试后的状态: 在此处输入图片说明

Sim*_*eux 2

看看这个,这是 Google 的 Gmail API 参考。该页面上有一个如何使用 Node.js 连接到它的示例。

https://developers.google.com/gmail/api/quickstart/nodejs

以下是同一文档中的示例,向您展示如何使用 q 参数搜索和检索消息列表:

https://developers.google.com/gmail/api/v1/reference/users/messages/list

PS 在我的评论中,我只是问您是否确定您已完成通过代码访问 Gmail 帐户所需的所有其他配置内容,这意味着创建应用程序、授权 OAuth 或在您的情况下授权不太安全的应用程序访问,只需查看一下您可能会发现缺少某些内容的链接。

你真的需要使用 IMAP 包吗???

  • 是的,我需要使用与特定网络邮件提供商无关的解决方案。这就是我选择 Node imap 模块的原因。当有新的网络邮件提供商时,我需要做的是在“imap”定义中提供新信息,然后我可以从另一个网络邮件提供商检索电子邮件。不管怎样,谢谢你! (4认同)