Customization of default email for app script uninstall instruction - google-apps-script

How can I customize the default apps_script_notification email which comes to my inbox when I use/authorize my google app script for the first time. If I can not customize, can I read it from gmail and edit it? Will that be legal and not against Google's policy? I need to update some of the content here.. please help.
Thanks,

You cant, nor can you edit a sent email (which I hope is never available as it doesnt make sense to edit a sent/received email)

Related

How do I use Zapier to share permissions to a Google Drive file ID with a specific email address?

This is practically the same question as brianrhea’s from back in December.
The goal is to use Zapier to share file permissions with a specific email address.
Here’s a screenshot to show you where I am in Zapier.
And yes, I’ve contacted Zapier support; just hoping someone here may have a helpful and timely answer. Thank you!

Triggering Gmail's Report Phishing Feature

Is there a way to trigger Gmail's "Report Phishing" option from a Gmail Add-on?
Our Add-on allows users to report the message internally to our own IT staff, and we would like to report to Google at the same time rather than asking users to report it twice.
I cannot find any documentation that suggests it is possible but figured it wouldn't hurt to ask.
Thanks in advance.
Would reading the contents of the mail and extracting the URI's out of it in order to send it via the Phishing Protection API count as a solution?
Quickstart for the submission API

How to specify a read receipt for MailApp

I am using MailApp from Google Apps Script to send emails. When I send an email, I want to be able to track to see if the email was opened or not. This email account is a G Suite account and Email Read Receipts is set to "Allow email read receipts to be sent to any email address."
With MailApp, how do I specify to send the read receipt for the email?
I believe this is not possible with the MailApp class. The only option I thought it would be possible is by using the method sendEmail(recipient, subject, body, options). However, this method does not include any option to request for a read receipt as how you can see under the Advanced parameters explanation.
I also checked the GMAIL API service and there is no option to do this as well. The help center article here, explains this is available inside the gmail web UI and after several testing, I found out this is not possible via API.
In summary, by using apps script or the Gmail API is not possible to achieve this. The only thing that comes to my mind right now, is to implement a system in which you will include a unique image in the message and track for when the image is loaded. When the image is loaded, that means the message has been read. I have no idea how to implement such solution but I know is possible.

How to automatically respond to an e-mail

I would like to automatically respond to an e-mail with some information. The idea is to provide a self-service way for students to get grades and passwords. I see sample scripts that work on e-mails, but I need to:
look for a keyword in the subject to understand what type of information to provide (i.e., grade, password, etc.)
look at the e-mail of the inbound e-mail to identify the student (optionally locate a password)
look up the information (possibly in a spreadsheet)
create an e-mail and send it to the student
I am more familiar with using scripts with e-mail and spreadsheets, but I would prefer to create this on a Google Sites page or embed it in a wiki.
Thanks in advance for the help,
JDF
I am not sure how much detail you were looking for, or if you where looking for example code, but here are some high level things to think about.
First, if you are going to embed the code into a webpage that you want be able to access all your other Google things easaly. eg if i stored all the student names passwords and student numbers in an spreadsheet or database you have to set up permission to do so. Your website does not count as you "persay" because if you had it shared out then someone could potentally steal all your google stuff.
Take a good look through the Google appi google apps script. You can search your email by thread (subeject) and then go through the emails like that. I think all the function that you want are there.

Html / Email / Distribution list problem from a noob

I need to create a feature for a website that will allow a user to enter their email in order to receive a free promotion (which will be emailed immediately) and be added to an announcement list. I haven't done any web programming and am wondering where I should start?
Should I just create a database and everytime an email is entered, add the email to the database, then when I want to send out an announcement just write a script that will send an email to every address?
Thanks!
Sites like Campaigner do all of this for you. Why re-invent the wheel.
You could use emailing list software; on a Linux box, that would be Mailman, http://www.list.org/.
Use ASP.NET express. Configure send e-mail and sore whatever you need in the database.
http://www.orcsweb.com/blog/brad/sending-email-from-asp-net-4-c-sample-code/