Загрузка...

Automatically Fill Account Website Field in Zoho CRM Using Contact Email

Tired of leaving the website field empty in your CRM? You're not alone. In this video, I show how a simple Zoho CRM workflow can fill it in automatically using the contact’s email domain. It saves time and activates Zoho’s enrichment feature, which pulls in company details like phone number, address, and industry.

I walk through how it works step by step. From adding a contact to the way the script checks for generic domains, everything happens behind the scenes with no extra effort from you.

This is a practical way to improve your CRM data without changing how you work.

Here's the code:
contact = zoho.crm.getRecordById("Contacts",contactId);
info contact;
if(contact.get("Account_Name") != null)
{
accountId = contact.get("Account_Name").get("id");
account = zoho.crm.getRecordById("Accounts",accountId);
info account;
website = account.get("Website");
if(website == null || website == "")
{
email = contact.get("Email");
if(email != null && email.contains("@") == true)
{
domain = email.toLowerCase().toList("@").get(1);
generic_domains = {"gmail.com","yahoo.com","outlook.com","hotmail.com","icloud.com","aol.com","msn.com","live.com","protonmail.com","zoho.com"};
if(generic_domains.contains(domain) == false)
{
website_to_set = "www." + domain;
update_map = Map();
update_map.put("Website",website_to_set);
update_resp = zoho.crm.updateRecord("Accounts",accountId,update_map);
info update_resp;
}
}
}
}

#ZohoCRM #CRMAutomation #DataEnrichment #WorkflowTips #CRMHacks

Видео Automatically Fill Account Website Field in Zoho CRM Using Contact Email канала Abstract Automation - Let's Zoho together!
Страницу в закладки Мои закладки
Все заметки Новая заметка Страницу в заметки

На информационно-развлекательном портале SALDA.WS применяются cookie-файлы. Нажимая кнопку Принять, вы подтверждаете свое согласие на их использование.

Об использовании CookiesПринять