Custom Action - E-Mail Notification Question?
Hello Zoho Community,
I Would Like To Have A Custom Action - E-Mail Notification Button ("show action in view header") that sends notification to all that meet the following condition.
- void MonthMembershipExpirationNotification()
{
for each record in Form [(E_Mail != "" && Method_of_Payment = "Cash" && zoho.currentdate.getMonth() = input.Month_Membership_Expiration_Notification.getMonth()]
{
sendmail
(
To : record.E_Mail
From : ""
Subject : ""
Message : ""
)
record.Month_Membership_Expiration_Notification = zoho.currentdate;
}
}
Looking Forward To Your Help.
Thank You.