使用utf8主题搜索邮件时出错

时间:2017-12-07 20:02:34

标签: node.js email imap inbox

我正试图按主题从收件箱中读取邮件,但是如果我使用这样的字符串搜索:“Pedidodeadiçãodedanosàviaturasfaf”,它就不起作用。

const inbox = require('inbox');

const imap = inbox.createConnection(emailConfig.imapPort, emailConfig.imapHost, { secureConnection: true, auth: emailConfig.auth })
  .
  .
  .
return new Promise<number[]>((resolve, reject) => {
    imap.search({ unseen: true, header: ["subject", subject] }, true, (err: any, uids: number[]) => {
        if (err) return reject(err);
        resolve(uids);
    })
});

当我使用该主题运行时,我收到此错误:“搜索邮件时出错”

我正在阅读Gmail帐户。 提前谢谢。

[编辑:我之前做了连接和openMailBox]

0 个答案:

没有答案