Bulk change: move double quotes outside tokens (#4431)

This commit is contained in:
Guido Lena Cota
2020-10-04 19:33:38 +02:00
committed by GitHub
parent cfe462c57f
commit 354d4b8748
59 changed files with 118 additions and 118 deletions

View File

@@ -6,12 +6,12 @@
- Send an email using the default account configured in `~/.msmtprc`:
`echo {{"Hello world"}} | msmtp {{to@example.org}}`
`echo "{{Hello world}}" | msmtp {{to@example.org}}`
- Send an email using a specific account configured in `~/.msmtprc`:
`echo {{"Hello world"}} | msmtp --account={{account_name}} {{to@example.org}}`
`echo "{{Hello world}}" | msmtp --account={{account_name}} {{to@example.org}}`
- Send an email without a configured account. The password should be specified in the `~/.msmtprc` file:
`echo {{"Hello world"}} | msmtp --host={{localhost}} --port={{999}} --from={{from@example.org}} {{to@example.org}}`
`echo "{{Hello world}}" | msmtp --host={{localhost}} --port={{999}} --from={{from@example.org}} {{to@example.org}}`