Send zoho creator template as an attachment
Thu Nov 28 2024 15:40:56 GMT+0000 (Coordinated Universal Time)
Saved by
@usman13
for each account in Account_Certificate[Status == "Draft"]
{
if(counter <= 8000)
{
accountId = account.ID;
reciepents = account.Recipient_Emails.toList();
for each rec in reciepents
{
sendmail
[
from :zoho.adminuserid
to :rec
subject :"Account Certificate"
message :"Account Name: " + account.Account_Name
Attachments :template:Account_Certificate:Account_Certificate accountId as PDF
]
counter = counter + 1;
}
account.Status="Sent";
}
}
content_copyCOPY
Comments