Search code examples
c#gmail

Handle Gmail (Send/Receive) in Win Forms


For certain reasons I want to develop Gmail desktop application for my self in C#. So that I can retrieve email (including attachments) (I dont want to use outlook/thunderbird etc. clients for desktop)

So please suggest what is better option, so far I have got following two where I can start:

https://developers.google.com/gmail/api/quickstart/dotnet#step_1_turn_on_the_api_name

https://gmailerxp.codeplex.com/


Solution

  • Try DevMvcComponent 3.0

    Install-Package DevMVCComponent
    

    use this readme at https://github.com/aukgit/DevMvcComponent.

    var gmailServer = new GmailServer("[email protected]", "password");
    gmailer.QuickSend("[email protected]", "Subject", "HTML body");
    

    You are good to go then.