Skip to content

Commit aced56e

Browse files
authored
Merge pull request #3 from solovey23/fix/readme-shell-quoting
Fix README examples: use single quotes around values containing !
2 parents 8816c52 + 7ed3715 commit aced56e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ mailtrap send transactional \
6767
mailtrap send transactional \
6868
--from "App <noreply@yourdomain.com>" \
6969
--to user@example.com \
70-
--subject "Welcome!" \
71-
--html "<h1>Welcome</h1>"
70+
--subject 'Welcome!' \
71+
--html '<h1>Welcome</h1>'
7272

7373
# Bulk
7474
mailtrap send bulk \
@@ -107,7 +107,7 @@ mailtrap domains send-setup-instructions --id 123 --email "admin@yourdomain.com"
107107

108108
# Templates
109109
mailtrap templates list
110-
mailtrap templates create --name "Welcome" --subject "Hello {{name}}" --body-html "<h1>Hi!</h1>"
110+
mailtrap templates create --name "Welcome" --subject "Hello {{name}}" --body-html '<h1>Hi!</h1>'
111111

112112
# Contacts
113113
mailtrap contacts create --email "user@example.com" --first-name "John"

0 commit comments

Comments
 (0)