File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ function sendReauthorizationRequest() {
220
220
if ( lastAuthEmailDate != today ) {
221
221
if ( MailApp . getRemainingDailyQuota ( ) > 0 ) {
222
222
var template =
223
- HtmlService . createTemplateFromFile ( 'AuthorizationEmail ' ) ;
223
+ HtmlService . createTemplateFromFile ( 'authorizationEmail ' ) ;
224
224
template . url = authInfo . getAuthorizationUrl ( ) ;
225
225
template . notice = NOTICE ;
226
226
var message = template . evaluate ( ) ;
@@ -255,7 +255,7 @@ function sendCreatorNotification() {
255
255
var addresses = settings . getProperty ( 'creatorEmail' ) . split ( ',' ) ;
256
256
if ( MailApp . getRemainingDailyQuota ( ) > addresses . length ) {
257
257
var template =
258
- HtmlService . createTemplateFromFile ( 'CreatorNotification ' ) ;
258
+ HtmlService . createTemplateFromFile ( 'creatorNotification ' ) ;
259
259
template . sheet =
260
260
DriveApp . getFileById ( form . getDestinationId ( ) ) . getUrl ( ) ;
261
261
template . summary = form . getSummaryUrl ( ) ;
@@ -290,7 +290,7 @@ function sendRespondentNotification(response) {
290
290
. getResponse ( ) ;
291
291
if ( respondentEmail ) {
292
292
var template =
293
- HtmlService . createTemplateFromFile ( 'RespondentNotification ' ) ;
293
+ HtmlService . createTemplateFromFile ( 'respondentNotification ' ) ;
294
294
template . paragraphs = settings . getProperty ( 'responseText' ) . split ( '\n' ) ;
295
295
template . notice = NOTICE ;
296
296
var message = template . evaluate ( ) ;
You can’t perform that action at this time.
0 commit comments