-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update 2022-01-20-send-discord-gmail.md
- Loading branch information
1 parent
8f140e2
commit 25f3142
Showing
1 changed file
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -227,18 +227,21 @@ var m_com = r1.offset (0,1).getValue(); | |
w_delta = r1.offset(0,4).getRichTextValue().getLinkUrl(); | ||
return MailApp.sendEmail({ | ||
to: "[email protected]", | ||
noReply: true, | ||
subject: "New Windows Build", | ||
htmlBody: "Download Windows N_" + w_day + "_" + month + "_" + year + "-" + w_com + " Here or below: WIN GDRIVE URL <br>" + "<br> Delta:" + w_delta + "<br> <br> QA Board: https://sites.google.com/zuru.tech/qaboard/home <br>" + "<br> <img src='https://blog.zuru.tech/images/logo_zuru.png'> <br>",}); | ||
} else if (flag == true && col == 5) { | ||
var l_delta = r1.offset(0,3).getRichTextValue().getLinkUrl(); | ||
return MailApp.sendEmail({ | ||
to: "[email protected]", | ||
noReply: true, | ||
subject: "New Linux Build", | ||
htmlBody: "Download Linux N_" + l_day + "_" + month + "_" + year + "-" + l_com + " Here or below: LINUX GDRIVE URL <br>" + "<br> Delta:" + l_delta + "<br> <br> QA Board: https://sites.google.com/zuru.tech/qaboard/home <br>" + "<br> <img src='https://blog.zuru.tech/images/logo_zuru.png'> <br>",}); | ||
} else if (flag == true && col == 6) { | ||
var m_delta = r1.offset (0,2).getRichTextValue().getLinkUrl(); | ||
return MailApp.sendEmail({ | ||
to: "[email protected]", | ||
noReply: true, | ||
subject: "New MacOSX Build", | ||
htmlBody: "Download MacOSX N_" + m_day + "_" + month + "_" + year + "-" + m_com + " Here or below: MAC GDRIVE URL <br>" + "<br> Delta:" + m_delta + "<br> <br> QA Board: https://sites.google.com/zuru.tech/qaboard/home <br>" + "<br> <img src='https://blog.zuru.tech/images/logo_zuru.png'> <br>",}); | ||
} else { | ||
|