I'm following this tutorial to send email in App Inventor: https://www.hackster.io/taifun/trigger-ifttt-to-send-an-email-using-app-inventor-9df505 (You will have to scroll down on the page to view the tutorial)
The tutorial is straight forward and easy to understand. However, the IFTTT service (Maker) is now called "Webhooks".
I don't know what else has changed since that tutorial was written. Following the tutorial:
- the URL is correct
https://maker.ifttt.com/trigger/Sendmail/with/key/*MYKEY*
- the RequestHeaders are correct
Content-Type: application/json
- the PostText is correct:
{ "value1" : "faeryofiris@gmail.com", "value2" : "test", "value3" : "test body" }
I have double and triple checked for spelling errors. Once I click a button to send this email, I receive the response: "Congratulations! You've fired the Sendmail event!"
Except... there is no email. Both emails are my actual emails, so they are valid emails. "faeryofiris@gmail.com" should be the "FROM" email, and "pixiibomb@gmail.com" is the email that is registered on IFTTT (this should be the email that receives a message from faeryofiris) I keep refreshing my gmail, and still... no email.
Any ideas?