11/*
22Copyright 2025 Google LLC
33
4- Licensed under the Apache License, Version 2.0 (the " License" );
4+ Licensed under the Apache License, Version 2.0 (the ' License' );
55you may not use this file except in compliance with the License.
66You may obtain a copy of the License at
77
88 https://www.apache.org/licenses/LICENSE-2.0
99
1010Unless required by applicable law or agreed to in writing, software
11- distributed under the License is distributed on an " AS IS" BASIS,
11+ distributed under the License is distributed on an ' AS IS' BASIS,
1212WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313See the License for the specific language governing permissions and
1414limitations under the License.
@@ -24,30 +24,32 @@ function generateSampleEmails() {
2424 // Send emails
2525 GmailApp . sendEmail (
2626 userEmail ,
27- " Thank you for amazing service!" ,
28- " Hi, I really enjoyed working with you. Thank you again!" ,
27+ ' Thank you for amazing service!' ,
28+ ' Hi, I really enjoyed working with you. Thank you again!' ,
2929 {
3030 name : 'Customer A' ,
3131 } ,
3232 ) ;
3333
3434 GmailApp . sendEmail (
3535 userEmail ,
36- " Request for information" ,
37- " Hello, I need more information on your recent product launch. Thank you." ,
36+ ' Request for information' ,
37+ ' Hello, I need more information on your recent product launch. Thank you.' ,
3838 {
3939 name : 'Customer B' ,
4040 } ,
4141 ) ;
4242
4343 GmailApp . sendEmail (
4444 userEmail ,
45- " Complaint!" ,
46- "Hello, You are late in delivery, again. Please contact me ASAP before I cancel our subscription." ,
45+ ' Complaint!' ,
46+ '' ,
4747 {
4848 name : 'Customer C' ,
49+ htmlBody : `<p>Hello, You are late in delivery, again.</p>
50+ <p>Please contact me ASAP before I cancel our subscription.</p>` ,
4951 } ,
5052 ) ;
5153
52- console . log ( " Sample email generation completed." )
54+ console . log ( ' Sample email generation completed.' )
5355}
0 commit comments