I have some scripts that don't send any emails anymore. To test this, I've created a simple script, but still I receive no email. I tried to send it to my personal mail, but same result.Do other people have this issue as well?function main() {
MailApp.sendEmail({
to: "myn...@companyname.nl",
subject: "subject",
body: "message"
});
}