Dear Respected Zoho Programmers and Support team
I have an application in CRM, which adds Contacts at the Zoho CRM. now i create an another form which used to sent emails in Creator to CRM Contacts. So after sent a mail that email should be listed automatically at the Zoho CRM under the particular contact, in which the Contact mail is sent. i am follows following post:
with the help of above post i do following at my form >> add >> Script (On success)
- //sent mail function
- // begin Creator-CRM binding
- contact_search = zoho.crm.searchRecords("Contacts", "(Last Name|==|" + chk.Last_Name + ")");
- contact_info = contact_search.get(0);
- current_id = contact_info.get("CONTACTID");
- email_map = { "entityId" : current_id, "To" : toaddress, "Subject" : Subject_temp, "From" : zoho.loginuserid, "Email Template" : template_temp };
- emailsResp = zoho.crm.create("Emails", email_map);
i get following error:
Error in statement at line number 7
zoho.crm.create task supports only 'leads, contacts, accounts, tasks, events, potentials, cases, solutions, products, pricebooks, vendors, quotes, purchaseorders, salesorders, invoices, campaigns' modules.
Please provide me response on it, Is it can be implemented or this feature is now not allowed in Creator-CRM integration?
With Regards
Elias Rollen