From 7ed37158277cb63c95332d3f52b66c901a06658f Mon Sep 17 00:00:00 2001 From: Mariya Solovey Date: Tue, 21 Apr 2026 16:30:24 +0300 Subject: [PATCH] Fix README examples: use single quotes around values containing ! Bash history expansion treats ! inside double quotes specially, causing dquote> mode when copy-pasting the examples. Switch to single quotes for --subject 'Welcome!' and --body-html '

Hi!

'. Co-Authored-By: Claude Opus 4.6 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 50f28ab..08971e5 100644 --- a/README.md +++ b/README.md @@ -67,8 +67,8 @@ mailtrap send transactional \ mailtrap send transactional \ --from "App " \ --to user@example.com \ - --subject "Welcome!" \ - --html "

Welcome

" + --subject 'Welcome!' \ + --html '

Welcome

' # Bulk mailtrap send bulk \ @@ -107,7 +107,7 @@ mailtrap domains send-setup-instructions --id 123 --email "admin@yourdomain.com" # Templates mailtrap templates list -mailtrap templates create --name "Welcome" --subject "Hello {{name}}" --body-html "

Hi!

" +mailtrap templates create --name "Welcome" --subject "Hello {{name}}" --body-html '

Hi!

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