-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfetchEmails.js
94 lines (80 loc) · 2.87 KB
/
fetchEmails.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
var count=1;
function openMails(){
count=1;
// alert(count);
// Step 1: Include required modules
var Imap = require('imap'),
inspect = require('util').inspect;
var fs = require('fs'), fileStream;
const simpleParser = require('mailparser').simpleParser;
// Step 2: Declaring new imap object
var imap = new Imap({
user: '[email protected]',
password: 'cinematicon',
host: 'imap.gmail.com',
port: 993,
tls: true
});
// Step 3: Program to receive emails.
/* This pretty much contains receiving emails, deciding which parts of email to receive,
and what do display on console after execution of program */
function openInbox(cb) {
imap.openBox('INBOX', true, cb);
}
imap.once('ready', function() {
openInbox(function(err, box) {
if (err) throw err;
var totalmessages = box.messages.total;
console.log(box.messages.total + ' message(s) found!');
console.log(imap.serverSupports('SORT'))
var f = imap.seq.fetch('*:1', {
bodies: ''
});
f.on('message', function(msg, seqno) {
console.log('Message #%d', seqno);//advait: ye sirf number dia hai msg ko iski jarrorat nahiye
var prefix = '(#' + seqno + ') ';//advait: ye bhi
msg.on('body', function(stream, info) {
simpleParser(stream, (err, mail) => {
var new_div = document.createElement("div");
new_div.setAttribute('id','mail'+count);
// new_div.style.position="relative";
console.log(prefix+"from Emaild : "+mail.from['value'][0].address);
console.log(prefix +'Subject: ' +mail.subject);
console.log(prefix + 'Text body: '+mail.text);
new_div.innerHTML = "<b>From: "+mail.from['value'][0].address+"</b><br>"+
"<i>Subject: "+mail.subject+"<br>"+
"<p style='display:none;' id='mail_text'"+count+">"+mail.text+"</p>";
new_div.style.background="white";
new_div.style.marginBottom="2%";
new_div.style.padding="1% 0 1% 0";
new_div.style.cursor="pointer";
// alert(new_div.getAttribute('id'));
var mail_data = document.createElement("div");
mail_data.setAttribute('id','mail_d'+count);
mail_data.innerHTML = "<b>From: "+mail.from['value'][0].address+"<br>"+
"<i>Subject: "+mail.subject+"<br><hr>"+
"<p>Mail text: "+mail.text+"</p>";
document.getElementById("mails-display").innerHTML=mail_data.innerHTML;
new_div.setAttribute('onclick','display_mail(this.id)');
document.getElementById("mails").appendChild(new_div);
count++;
// alert(document.getElementById('mail%d',seqno).textContent);
});
});
imap.end();
});
});
});
imap.once('error', function(err) {
console.log(err);
});
imap.once('end', function() {
console.log('Connection ended');
});
imap.connect();
}
function display_mail(id){
var mail_content = document.getElementById(id);
mail_content.style.background="yellow";
document.getElementById("mails-display").innerHTML=""+mail_content.textContent+"<br><hr>";
}