0 votes

Can we read eml files from the local system folder?

by

1 Answer

0 votes

Yes, you just need to use MailBuilder and CreateFromEmlFile method:

IMail email = new MailBuilder().CreateFromEmlFile("c:\\email.eml");
by (297k points)
...