Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

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

Can I write a program to generate emails and send them via Thunderbird?

  • 1 resposta
  • 1 has this problem
  • 3 views
  • Last reply by Matt

more options

I code in Delphi (a Pascal variant). I would like to compose messages in my program and then send them to Thunderbird for transmission. Does TB have a ActiveX or similar interface that lets other software use it?

I code in Delphi (a Pascal variant). I would like to compose messages in my program and then send them to Thunderbird for transmission. Does TB have a ActiveX or similar interface that lets other software use it?

All Replies (1)

more options

The short answer to your question is NO.

The somewhat longer answer is you can use MAPI or you can use the mailto: links. If my recollection of Delphi (very old) is correct it supported a full featured Mailto:, unlike Microsoft products which tent to only reliably support the Mailto: address and Subject syntax.

Worth considering is that neither MAPI or Mailto are application dependent, they both use the installed default ail application so be it Thunderbird Outlook or TheBat!, your application does not care.

MAPI is most likelt to be the one to die out next, but is also the easiest to compose HTML messages for. If you needs are simple and the body will be text, mailto: is simple, effective and not as prone to automation errors and com: problems as MAPI.