mailgun / documentation

Mailgun Documentation
http://documentation.mailgun.com/
MIT License
79 stars 148 forks source link

Colon typo in source/user_manual.rst #636

Closed far-authentise closed 1 year ago

far-authentise commented 1 year ago

Typo in source/user_manual.rst at example with paragraph before it starting with ' The data provided will be included the recipients email via a header called X-Mailgun-Variables.' in the last_name value

As-is (note last_name):

     {
         "event": "delivered",
         "user-variables": {
             "first_name": "John",
             "last_name:" "Smith",
             "my_message_id": "123"
         }
     }

Corrected: (note last_name):

     {
         "event": "delivered",
         "user-variables": {
             "first_name": "John",
             "last_name": "Smith",
             "my_message_id": "123"
         }
     }
zeefarmer commented 1 year ago

Fixed in https://github.com/mailgun/documentation/pull/639