Can I create a case for the Contact every time I receive an email?

Can I create a case for the Contact every time I receive an email?

Yes, you can create a workflow to create a new case when an email is received from a contact: 

    1. Choose the execution condition as when an email is received.

    2. Choose Contacts as the module to apply the rule to.

    3. Choose email field conditions if required.

    4. Choose Function as an Instant Action.

    5. Create new function for the Contacts module.

    6. Copy and paste the following code to the Deluge editor:

mp=map();

mp.put("Status", "New");

mp.put("Case_Origin", "Email");

mp.put("Subject", "New email received");

mp.put("Related_To", id);

createcase=zoho.crm.createRecord("Cases", mp);

info createcase;

    7. Click Edit Arguments and name the argument 'id'. Mark the Contact ID field for the argument and save the changes.

There are additional workaround options available on the following page: {link}

    • Related Articles

    • FAQs on case escalation rules

      1. Why isn't my newly created case escalation rule working for existing cases?  There are a variety of reasons why an escalation rule isn't working for some cases. Here are the three most common ones:   There might be another escalation rule already ...
    • Setting Case Escalation Rules

      It may so happen that sometimes, a case is not attended by the person to whom it is assigned. The Case Escalation feature allows you to configure a rule by which the case can be escalated to other members in the operational hierarchy. You can use ...
    • Best Time to Contact Customers

      We often hear telecallers asking, "Is this the right time to talk?". Though most of the times our response is not affirmative, have you wondered why is it important for them to know whether it is the right time to contact? Because, ...
    • How can I create and send invoices?

      An invoice is a bill issued by a vendor to a customer with the goods or services they ordered. It usually contains the purchase order reference number, date, billing address, shipping address, terms of payment, and line items (products or services) ...
    • Manage case assignment in a law firm

      Edition: Enterprise | Industry: Law firm | Features: Customization, Views, Workflow Rules Scenario Leotta Dillard is the office administrator at a law firm that specializes in cases against corporations that behave unethically towards their ...