New Post: Unique ID for Emails
Hi mzda, Thank you for the kind words, we're trying to the library as good as possible, but it's only possible thanks to the feedback from our users. If following the documentation, the MessageUid,...
View ArticleNew Post: TextBody.TextData quoted printable
Hi mzda, at the moment the TextBody and HtmlBody won't be decoded automatically, but you can use the GetDecodedBody method of the Message to get a decoded version. A short sample is provided in the...
View ArticleNew Post: TextBody.TextData quoted printable
Hi Pavel, thanks for the fast response to my issue. I have already tried that solution too. I am using a GMail account with the IMAP Access. Following is my code: bool isHtml = true; string body =...
View ArticleNew Post: TextBody.TextData quoted printable
Hi Pazel, I have found another simple workaround, which works for me at least: private string getPlainTextFromHtml(string htmlString) { string htmlTagPattern = "<.*?>"; string brPattern =...
View ArticleNew Post: Unique ID for Emails
Hi Pavel, the id capability from IMAP is not usefull to me since I need to move an email from one folder to another and it still has to be recognized as the email, which I have retrieved. So my current...
View ArticleNew Post: TextBody.TextData quoted printable
Hi Donny, currently the GetDecodedBody method always returns the HTML body if there is one, so the parameter isHtml is actually just to let you know if the returned body is the HtmlBody and has no...
View ArticleNew Post: Unique ID for Emails
Hi Donny, I think it's no problem to use the Message-Id header as unique identifier. But you must be sure that the server your using always returns this header field. Another point - you don't have to...
View ArticleNew Post: Sent Mail
Hi, Is it possible to use this API to retrieve Sent Mail? Thanks, John
View ArticleNew Post: ImapX Latest Sample Code to Get only 1 Unread Email
Hi All, I am looking for the latest sample code preferably C#.Net for using ImapX which receive only 1 Unread item including message body from the mail box and mark it as read. I don't want to get all...
View ArticleCreated Unassigned: ImapX.MessageContent [1616]
i'm trying to run this code to get the messages body but i'm getting only ImapX.MessageContent in return.```ImapX.ImapClient client = new ImapX.ImapClient("imap.gmail.com", 993, true); bool result =...
View ArticleCommented Unassigned: ImapX.MessageContent [1616]
i'm trying to run this code to get the messages body but i'm getting only ImapX.MessageContent in return.```ImapX.ImapClient client = new ImapX.ImapClient("imap.gmail.com", 993, true); bool result =...
View ArticleEdited Unassigned: ImapX.MessageContent [1616]
i'm trying to run this code to get the messages body but i'm getting only ImapX.MessageContent in return.```ImapX.ImapClient client = new ImapX.ImapClient("imap.gmail.com", 993, true); bool result =...
View ArticleNew Post: Sent Mail
Hi John, sure, it's no problem to get your sent mails. Just check the messages in the folder which contains the sent messages in your account. Currently ou need to look for it manually, with the next...
View ArticleNew Post: ImapX Latest Sample Code to Get only 1 Unread Email
Hi Nabeel, at the moment it's a little complicated to get only one message. What you can do, is limiting your request to retrieve only the messages which have the Recent flag set:var messages =...
View ArticleNew Post: IMAPX Erro when deploy my app [CAPABILITY IMAP4rev1...]
Hi guys, I Made an application in MVC that works fine on my computer. When i Publish the App to my Windows 2008 Server i got that error:System.Exception: * CAPABILITY IMAP4rev1 UNSELECT IDLE NAMESPACE...
View ArticleNew Post: IMAPX Error when deploy my app [CAPABILITY IMAP4rev1...]
Hi lucianotcorreia, I tested the library on Server 2008, and it works fine, but I didn't have a web application. The only problem i could think of here, is that the ImapClient is losing connection and...
View ArticleNew Post: IMAPX Error when deploy my app [CAPABILITY IMAP4rev1...]
Thanks for the replay pavel. i tried to make a Console App, and set the IsDebug Protperty to true. Run the App in my computer and is Ok. Uploaded to my server and got that error message now:IMAP002 NO...
View ArticleNew Post: IMAPX Error when deploy my app [CAPABILITY IMAP4rev1...]
Update: The link has an option for "Clear Captcha" after that my app and site worked fine on the server.
View ArticleNew Post: IMAPX Error when deploy my app [CAPABILITY IMAP4rev1...]
Good day! thank you for checking! Happy you found a solution. I think Google sometimes blocks direct access to an account for security reasons. I'll consider this issue in the next release. Best...
View ArticleReopened Issue: Problem with Encoding ParseContentType(string value, out...
Ocorred error in line```return Encoding.GetEncoding(tmp.Groups[tmp.Groups.Count - 1].Value.Split(new[] { ';' })[0].Trim());```__'utf8' is not a supported encoding name. Parameter name: name__Should be...
View Article