Skip to content

Commit

Permalink
Corrected several typing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Bas-Man committed Jun 16, 2020
1 parent 55144b4 commit e1b93a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/setting-up-zapier.rst
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ This code sends a different text message depending on the from address of the se
API_URI = "https://notify-api.line.me/api/notify"
if input.get('from') == 'AddressA':
text_message = "This is the message for sender A"
text_message = "This is the message from sender A"
if input.get('from') == 'AddressB':
text_message = "This is the message for sender B with email body included:\n\n{}".format(input.get('body'))
text_message = "This is the message from sender B with email body included:\n\n{}".format(input.get('body'))
TOKEN = "YOUR_TOKEN_GOES_HERE"
HEADER = {"Authorization": "Bearer " + TOKEN}
Expand Down

0 comments on commit e1b93a9

Please sign in to comment.