Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Send mail in thunderbird thru .net

more options

Dear Sir

How do we send mail in thunderbird using which class / component thru vb.net windows application. We use framework 4.5

Currently we send to outlook by creating outlook object

Suresh Bansal

Dear Sir How do we send mail in thunderbird using which class / component thru vb.net windows application. We use framework 4.5 Currently we send to outlook by creating outlook object Suresh Bansal

All Replies (7)

more options

I doubt this is simple to do. Thunderbird does not expose an API to send emails.

more options
more options

Solution is based on MAPI , Old VB6 - which has become obsolete. Further they create problems in windows 64 bit system

We are looking for .net component to send mail to thunderbird or the function by which we can create thunderbird object in .net windows application

Suresh Bansal

more options

MAPI is still supported, that you do not wish to use it for whatever reason is not something we can help you with.

I think you also best ask Microsoft why they include mapi in their Visual Studio 2017 documentation. https://docs.microsoft.com/en-us/cpp/mfc/mapi?view=vs-2017 No mention of it being deprecated in Visual Studio or anywhere else.

Thunderbird also has a 64bit mapi DLL that handles much of the issues associated with MAPI on 64bit systems.

Your only other choice is the SendTo protocol which Thunderbird supports. But it offers no way to click send so spamming with it is very difficult.

more options

Thanks for reply

But we don't want to follow MAPI route due to following

a) 32 bit , 64 bit windows issuses

b) MAPI sends to default mail client which may or may not be there.

We wish to provide multiple mail clients lke outlook, mail, smtp, thunderbird etc. - user wise - without any intervention by user - total handling by .net windows application

Suresh Bansal

more options

Perhaps you need to reconsider your approach. If you are going to go to the trouble of building a mime handler to use SMTP just use it and forget the mail clients entirely. IF they use Outlook.com or Gmail derived SMTP server their IMAP sent folders will be updated automatically by the SMTP action.

more options

Hi

Thunderbird is popular email client ->I wonder there is no .Net component developed by Mozilla or 3rd Party vendors to send mails to it ->which is independent of 32 bit /64 Bit systems as majority of .Net components are.

Suresh Bansal