使用Thunderbird从Delphi发送邮件

OZ8*_*8HP 1 delphi email thunderbird

我需要使用Thunderbird和Delphi XE3发送带附件的电子邮件.我不知道从哪里开始所以我问​​是否有人链接到我可能找到信息的网站.

Leo*_*era 5

从文档中,您可以使用Thunderbird的命令行选项,因此我认为使用ShellExecute应该可行.我没试过这个.

ShellExecute(Handle, 'path\to\thunderbird.exe',
    '-compose "to=foo@nowhere.net,attachment=''file:///c:/test.txt''", 
    nil, SW_SHOWNORMAL);
Run Code Online (Sandbox Code Playgroud)