I recently came across a useful template script for creating an automated help desk workflow. Once a user fills out the form, they receive an email with a message saying "Thanks for submitting your issue. \n\nWe'll start working on it as soon as possible."
function formSubmitReply(e) {
var userEmail = e.values[3];
MailApp.sendEmail(userEmail,
"Help Desk Ticket",
"Thanks for submitting your issue. \n\nWe'll start " +
"working on it as soon as possible. \n\nHelp Desk",
{name:"Help Desk"});
All I'm looking to do now is to include a clickable link to our procedure Google Doc page within that message. I am relatively new to scripting and could use a little guidance to get started.