Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Buscar en Ayuda

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

mailto:kontor@radioringkobing.dk

  • 8 respuestas
  • 0 tienen este problema
  • 3 visitas
  • Última respuesta de 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

Todas las respuestas (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.