搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

mailto:kontor@radioringkobing.dk

  • 8 个回答
  • 0 人有此问题
  • 3 次查看
  • 最后回复者为 kontor94

more options

Dear Thunderbird When we were running Outlook on Windows XP, we could have the following statement: mailto:kontor@radioringkobing.dk, and it would send a mail through Outlook Now we are running Thunderbird on Windows 10, and this feature don't work. We have a costum built program to adresse our members. if we have to use Thunderbird one mail at a time, instead of a bulk job, it will take oceans of time. Best regards Anton Andersen Radio Ringkøbing

Dear Thunderbird When we were running Outlook on Windows XP, we could have the following statement: mailto:kontor@radioringkobing.dk, and it would send a mail through Outlook Now we are running Thunderbird on Windows 10, and this feature don't work. We have a costum built program to adresse our members. if we have to use Thunderbird one mail at a time, instead of a bulk job, it will take oceans of time. Best regards Anton Andersen Radio Ringkøbing

所有回复 (8)

more options

You could create a group address list (which seems what you were doing with Outlook).

more options

Hi David Thank you for your answer, thou it does not solve my problem. Some members play radio bingo, others participate in lottery. Some every week, other sometimes. Therefore it is not the same members I address every time. I have a program handling all the accounts, and once a month I send out bills. Until now I have used the code mailto:whoever@wherever.dk, which cycles thru my member list, and generate an email with the correct bill attached.

more options

Hi David

I have attached the picture I get when I try to send these e-mails. Thunderbird is nowhere on the list, how do I get it there? Regards Anton Andersen

more options

Normally, that is achieved by setting Thunderbird as default email client at Settings>General.

more options

Since you are using a custom program to interact with an email client, you would need to give explicit detail on the process and interaction for anyone here to give constructive feedback, if it's possible.

more options

ShellExecute(Handle, 'open', PChar('Mailto:' + EmailTxt), nil, nil, SW_SHOWNORMAL);

I use Delphi as a programing tool. The above is the code that works on Windows XP and Outlook from Office 2000 As Outlook from Office 2000 will not work on Windows 10, I use Thunderbird.

more options

If I put this code om my webpage, I get the same problem. Send <a href="mailto:kontor@radioringkobing.dk">mail</a> Regards Anton Andersen

more options

It works on Windows 7, thou the attachment doesn't get included.

   PdfFil := Global.HentLokal('PDF.') + 'Faktura' + IntToStr(OrdreData.FakturaNr) + '.pdf';
   EmailTekst := 'Mailto:' +  Global.HentKunde(KundeData.FaktAdr).FakturaMail + '?Subject=Reklame faktura'
   EmailTekst := EmailTekst + '&attachment="' + PdfFil + '"';
   ShellExecute(Handle,'open', PChar(EmailTekst), nil, nil, SW_SHOWNORMAL);

It worked flawless on Windows XP and Office 2000.