I'm trying to fetch SENT emails from gmail server using nodemailer through Imap.
the solution below is not working and the result is the INBOX not SENT
var imap = new Imap({
user: request.body.email,
password: request.body.password,
host: '{imap.gmail.com:993/imap/ssl}INBOX.Sent',
port: 993,
tlsOptions: { rejectUnauthorized: false },
tls: true
});
LIST
request and find the proper names. – Heathen