Hi,
i configured the eMail account to send mail (i had problems with Gmail account so i switch to another free email service but that's another issue). I 'm now able to send email but i don't understand if there is already the possibility to fetch email with POP or IMAP directlu from within HG.
Looking at NetHelper.cs source corde i see there is a sort of IMAP client helper declared but then its not used anymore anywhere.
#region IMAP client
/// <summary>
/// IMAP mail client helper.
/// </summary>
/// <returns>The IMAP client.</returns>
/// <param name="host">Host.</param>
/// <param name="port">Port.</param>
/// <param name="useSsl">If set to <c>true</c> use ssl.</param>
public ImapClient ImapClient(string host, int port, bool useSsl)
{
return new ImapClient(host, port, useSsl);
}
#endregion
So, the question is, can i retrieve mail with HG using POP3 or IMAP ?
If not, is it possible to import third party classes to start using already developed pop/imap client for c#?
Thanks
Cristiano