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!

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

launching thunderbird from command line on mac os with compose arguments

  • 6 réponses
  • 1 a ce problème
  • 10 vues
  • Dernière réponse par jaumedt

more options

I'm launching Thunderbird from command line on mac os with compose arguments like this:

open -a /Applications/Thunderbird.app/Contents/MacOS/thunderbird --args --compose

it runs thunderbird and show the compose window. great!

The issue is when thunderbird is running before launching the shell command, it only shows the thunderbird inbox window, not the thunderbird compose window.

Any Idea ?

Thank you for your help

I'm launching Thunderbird from command line on mac os with compose arguments like this: open -a /Applications/Thunderbird.app/Contents/MacOS/thunderbird --args --compose it runs thunderbird and show the compose window. great! The issue is when thunderbird is running before launching the shell command, it only shows the thunderbird inbox window, not the thunderbird compose window. Any Idea ? Thank you for your help

Toutes les réponses (6)

more options

Never understood the use of the command line option in this case.

Use the mailto: protocol to launch your default mailer on all operating systems. With the use of appropriate mailto parameters you can basically compose the entire message with it, just not actually click send.

more options

Thank you Matt

Unfortunatelly mailto: doesn't support file attachments

more options

See the link for an example of a mailto: with the attachment parameter set.

I appear to recall Windows had somewhat flaky support for mailto: Is the Apple implementation worse?

more options

sure!

I'have been gathering on the net about composing emails with emailto and I have found a lot of them but none of them works

Thank you

more options

jaumedt said

sure! I'have been gathering on the net about composing emails with emailto and I have found a lot of them but none of them works Thank you

have you tried an attachment of a few btyes of text in a text file? Most issue I have seen with mailto are either related to limitations of the software doing the implementation or the operating system. For example web browsers typically do not have access to the local file system, so an attachment using the local file system would fail, whereas an attachment on a public web server would not. Mail to like any programing task is not just a matter if rolling it up and it will work. Just as Windows MAPI is questionable on any product not released by Microsoft.

You might want to try -new-instance at the commend line. I do not know if it will do what you want.

more options

Hi Matt

Thunderbird doesn't support more than one instance on mac os.

Eventually I decided to code an email socket. May be I could use thunderbird in new releases.

Thank you for your help