#File.Delete(eml) throw an exception
Looking at _\ImapX\Extensions\MailMessageExtensions.cs_
There is
```
public static string ToEml(this MailMessage mailMessage)
{
...
if (string.IsNullOrEmpty(tmpPath))
throw new OperationFailedException();
else
{
var eml = File.ReadAllText(tmpPath);
File.Delete(eml);
return eml;
}
...
}
```
I suppose it should be __File.Delete(tmpPath)__ instead of __File.Delete(eml);__
Looking at _\ImapX\Extensions\MailMessageExtensions.cs_
There is
```
public static string ToEml(this MailMessage mailMessage)
{
...
if (string.IsNullOrEmpty(tmpPath))
throw new OperationFailedException();
else
{
var eml = File.ReadAllText(tmpPath);
File.Delete(eml);
return eml;
}
...
}
```
I suppose it should be __File.Delete(tmpPath)__ instead of __File.Delete(eml);__