-
-
Save schlos/d4bfff57470e65e06833bf070b4c354c to your computer and use it in GitHub Desktop.
Google Apps Script snippet that send a thank you response based on supplied email
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sendEmail(e) { | |
var emailTo = e.namedValues['20. Email confirmation (and badge)'][0]; | |
if (emailTo != ""){ | |
var text = 'Thank you for taking time to complete the ALT Annual Survey 2014. You can help us get a better understanding of how learning technology is used across sectors by sharing this link to the survey with your community: http://go.alt.ac.uk/ALT-Survey-2014\n\nYou might also use this suggested text in a tweet:\n\n " Just completed the ALT Annual Survey 2014 exploring use of learning technology across sectors. Have your say http://go.alt.ac.uk/ALT-Survey-2014 #altc "'; | |
var textHtml = HtmlService.createHtmlOutputFromFile('mailText').getContent(); | |
MailApp.sendEmail(emailTo, | |
"Thank you for completing the ALT Annual Survey 2014", | |
text, | |
{replyTo:"[email protected]", htmlBody: textHtml}); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<p>Thank you for taking time to complete the ALT Annual Survey 2014. You can help us get a better understanding of how learning technology is used across sectors by sharing this link to the survey with your community: <a href="http://go.alt.ac.uk/ALT-Survey-2014">http://go.alt.ac.uk/ALT-Survey-2014</a>.</p> | |
<p>You might also use this suggested text in a tweet:</p> | |
<p>" Just completed the ALT Annual Survey 2014 exploring use of learning technology across sectors. Have your say <a href="http://go.alt.ac.uk/ALT-Survey-2014">http://go.alt.ac.uk/ALT-Survey-2014</a> #altc " [<a href="http://twitter.com/intent/tweet?text=Just completed the ALT Annual Survey 2014 exploring use of learning technology across sectors. Have your say http://go.alt.ac.uk/ALT-Survey-2014 #altc">tweet</a>]</p> | |
<p>Or display this badge on your website:</p> | |
<p align="center"><a href="http://go.alt.ac.uk/ALT-Survey-2014" alt="Participate in the ALT Annual Survey 2014"><img src="https://www.alt.ac.uk/sites/alt.ac.uk/files/ALT-Survey-Badge-2014-SML.png" title="ALT Annual Survey 2014 Participant"/><br /> | |
Participate in the ALT Annual Survey 2014</a></p> | |
<p align="center"><em>If you would like to embed this badge and help promote the survey you can use this html markup</em>:<br/> | |
<code><a href="http://go.alt.ac.uk/ALT-Survey-2014" alt="Participate in the ALT Annual Survey 2014"><img src="https://www.alt.ac.uk/sites/alt.ac.uk/files/ALT-Survey-Badge-2014-SML.png" title="ALT Annual Survey 2014 Participant"/><br />Participate in the ALT Annual Survey 2014</a></code></p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment