Closed far-authentise closed 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
X-Mailgun-Variables
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" } }
Fixed in https://github.com/mailgun/documentation/pull/639
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 valueAs-is (note last_name):
Corrected: (note last_name):