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.
... 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.
Comment