Firebird how to programmaticalliy send and email without client dialog appearing

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Tony Cleveland
    New Member
    • Apr 2015
    • 2

    Firebird how to programmaticalliy send and email without client dialog appearing

    I'm using C# but the programming language doesn't matter in this case. Basically I'm trying to programmaticall y send an email using Thunderbird without Thunderbird showing the email client dialog. i.e. Thunderbird just send out the email message without the dialog popping up. My work around is a hack:
    ... Thunderbird opens here...
    ... wait a couple seconds
    System.Threadin g.Thread.Sleep( 2000);
    ... now send Ctrl+Enter which sends and closes Thunderbird
    System.Windows. Forms.SendKeys. SendWait("^{ENT ER}");

    Hoping someone has found a solution for doing this. I've been searching without any luck.
    Last edited by Tony Cleveland; Apr 20 '15, 07:00 PM. Reason: Misspelled word Firebird should have been Thunderbird
  • Tony Cleveland
    New Member
    • Apr 2015
    • 2

    #2
    * * * Sorry, I meant Thunderbird * * *

    Comment

    Working...