I’m trying to loop through a local DB, I want to get property objects for object j. I tried doing this:
Edit:
Sorry wrong screenshot
But the data returns nothing, any advice?
Local DB Image:
I’m trying to loop through a local DB, I want to get property objects for object j. I tried doing this:
Edit:
Sorry wrong screenshot
But the data returns nothing, any advice?
Local DB Image:
Can you share an screenshot of your DB? As far as I can see, you’ve done it wrong. Firstly, you’re looping through the Profile Pictures of the homework helpers. Change that to ID.
There’s more wrong too, but I can only explain that after you’ve shared a screenshot of your DB.
thanks! The pictures in the post.
Instead of
Use
Of course, my table names are wrong- replace them with your table names and column names.
Something like this? And thank you for the help!
Also, do the same with
Yep, that’s right. Can you test it an tell me?
It works!
I was using the Gmail API to send an email within the app (Tutorial from cttricks: Sending Emails From Thunkable App | Gmail App)
It works fine now! Thanks for the help!
Great work! I’d love to try this out myself!
Sure! I’ll send a link!
Thanks!
Alright, my computer was being slow, but here’s a mock up version!: Thunkable
Oh yeah I forgot to mention: It’s being sent from my teams email if you want it to be sent from an email of your choice head over to the tutorial!
Wow! This is amazing! I just tested it out, and it worked great. Will check out the tutorial. Sorry, I tested it and got an email from your team’s email.
Glad to hear it worked and that you liked it!!
And thanks to @cttricks for the awesome tutorial
Could you share the APPSCRIPT code if you don’t mind? The link to @cttricks’s code isn’t working.
sure, pretty sure this was it …
function doPost(e) {
var recipient = e.parameters.recipient;
recipient = decodeURI(recipient);
var subject = e.parameters.subject;
subject = decodeURI(subject);
var body = e.parameters.body;
body = decodeURI(body);
MailApp.sendEmail(recipient, subject, body);
}
Thank you so much! Am trying this myself right now.
awesome! Let me know if I could help with anything else