Thanks again. Managed to get the url by changing to tuple.Item.3.Them maybe you should save html tuple.Item3
// tuple.Item1 - sibject, tuple.Item2 - from, tuple.Item3 - html message, tuple.Item4 - text message
List<string> tmp = new List<string>();
tmp.Add(tuple.Item1);
tmp.Add(tuple.Item2);
tmp.Add(tuple.Item3);
tmp.Add(tuple.Item4);
project.Tables["Tabl1"].AddRow(tmp);
You welcomeNow that's what I'm talking about! I'll use this 'catch all' range in future projects.
Congrats on becoming a mod, btw. I hope they pay you enough?
I increased 100 to 200, but keep getting: 924d8d6e-e96b-4b89-98e3-df06b588ae77 (maximum size quota message). There are only 130 emails in the inbox.
// tuple.Item1 - sibject, tuple.Item2 - from, tuple.Item3 - html message, tuple.Item4 - text message
List<string> tmp = new List<string>();
tmp.Add(tuple.Item1);
tmp.Add(tuple.Item2);
tmp.Add(tuple.Item3);
tmp.Add(tuple.Item4);
project.Tables["Tabl1"].AddRow(tmp);
It's possible. Depends on email providerAnyone having issues with gmail not deleting using POP?
I think it's will look like
thanks, work)project.Lists["Tabl1"].Add(tuple.Item4);
I think, I answered you in the ticket.is there a way to just get NEW messages, and then clear the table after parse?
i just want to grab NEW inbox items from email folder (unread tag?)
then clear the table when I'm done using the data for those emails? or maybe even clear the table and move the email (via email id) to a different folder (like:Task Done)?