Forrest logo
back to the neomutt tool

neomutt:tldr:65f6f

neomutt: Specify a draft file containing the header and the body of the message, in RFC 5322 format.
$ neomutt -H ${filename} ${recipient@example-com}
try on your machine

This command is invoking the neomutt email client and passing some arguments to it:

  1. neomutt: This is the command to start the neomutt email client.

  2. -H ${filename}: This option specifies the location of the header file for the email. The ${filename} is a placeholder for the actual filename, which should be provided when running the command. It could be something like /path/to/header/file.

  3. ${recipient@example-com}: This is the recipient's email address. The ${recipient@example-com} is also a placeholder for the actual email address, which should be provided when running the command. It should be in the format recipient@example.com.

Overall, this command is used to start the neomutt email client and open a new email compose window, pre-filling the header file and the recipient's email address.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the neomutt tool