Message360 Extension for Zoho CRM

Message360 Extension for Zoho CRM

With message360˚ extension for Zoho CRM, you can now send message to Leads and Contacts right from inside Zoho CRM. You can also create templates for the messages. You can also view all the message360˚ account details along with the numbers present and list of outbound and inbound messages.

Install message360˚

You can either go to the Zoho Marketplace and install the message360° extension or log in to your Zoho CRM account and install.

To install message360˚ extension

  1. Go to Setup > Marketplace > All.
  2. All the installed extensions are listed. Under All Extensions you can view all the extensions supported in CRM.
  3. Click All Extensions, browse through for message360˚ and click it.
    The details about the extension will be available.
  4. Click Install Now.
  5. In the following screen, agree to the terms of service and click Continueto Install.
  6. Choose one of the following and click Confirm.
    • Install for admin only - The extension will be installed in CRM for only the users with the administrator profile.
    • Install for all users - The extension will be installed in CRM for all the users. Users need to have an message360˚ account to use this feature.
    • Choose profiles - The extension will be installed in CRM for all the users. You need to choose this option, click Continue and then select the profile
      The extension will be installed automatically for the specified users. After installing you need to authorize using your message360˚ login credentials.
  7. Copy the Auth Token and the Account Sid from the message360˚ Dashboard and paste them.
    The account will be authorized and the extension can be used.

Send Messages

With the message360˚ extension for Zoho CRM you can now send messages to your Leads and Contacts right from inside Zoho CRM.

To create message template

  1. Go to SMS Templates tab.
  2. Click + to create a new template.
  3. Give the template a name.
  4. Specify other fields like Email address, which CRM module it belongs to, Owner, Currency and EmailOptOut option.
  5. Then type the message content in the Template Message field box.
  6. Click Save.

To send messages to your CRM Leads or Contacts

  1. Go to Leads or Contacts module.
  2. Click on the record for which you want to send the message.
    You can also select multiple records and send messages to them at one go.
  3. Select the number From which you want to send the message.
  4. Click Send SMS.
  5. Add Recipients to send the message if needed.
  6. Choose Template from the drop-down list.
  7. Edit the message, if needed.
  8. To insert fields, select the required field and it will be inserted into the message.

    You can also view the history of messages in the SMS History tab.

To send messages to new Leads or Contacts through workflows

Users who can also send messages to your new contacts using the message360 integration. This can be accomplished through workflow custom functions in CRM. Write your own custom function using our Deluge script editor in your CRM and associate it with the workflow rule. See Also Deluge Script Reference guide

To program a custom function

  1. Click (theSettingsicon)> Setup > Automation > Workflow Automation > Custom Function
  2. In the Workflow Custom Functions page, click Configure Custom Function.
  3. In the Configure Custom Function page, choose Write your own function option.
    Write your Custom Function
  4. Write your required function in the Deluge Script Editor.
    You can use the following custom function script.
    //Note: the custom function should have "record_id" parameter
     
    // getting record info from Leads or Contacts using the record_id
     
    record_info = zoho.crm.getRecordById("Leads", record_id);
     
    // getting "Mobile" field value from the record_info (you can also get "Phone" field)
     
    mobile = record_info.get("Mobile");
     
    if (isNull(mobile)) {
    // returning since the mobile number is empty
    return;
    }
     
    // trim function will remove the white spaces at the start and at the end of the mobile number.
    mobile = mobile.trim();
     
    // getting account_sid and authtoken of message360 from extension settings
     
    account_sid = zoho.crm.getOrgVariable("message360.account_sid");
    authtoken = zoho.crm.getOrgVariable("message360.authtoken");
     
    // message360 send sms API URL
     
    // ####### CONFIGURE VARIABLES SECTION - STARTS
     
    // configure from number with country code
    fromcountrycode = "1";
    from_no = "<FROM_NUMNER>";
     
    // configure to number country code
    tocountrycode = "1";
    to_no = mobile; // setting variable "mobile" as to number
     
    // enter the SMS text
    sms_message = "Hi, This is test SMS from Zoho CRM.";
     
    // ####### CONFIGURE VARIABLES SECTION - ENDS
     
    if (!isNull(account_sid) && !isNull(authtoken)) {
    // doing base64 encoding for account_sid and authtoken for authenticate message360.com
     
    baseEncoded = zoho.encryption.base64Encode(account_sid+":"+authtoken);
    baseEncoded = "Basic " + baseEncoded;
     
    headers = map();
    headers.put("Authorization", baseEncoded);
     
    // setting all required parameters to the map for sending SMS
    request_data = map();
    request_data.put("fromcountrycode", fromcountrycode);
    request_data.put("from", from_no);
    request_data.put("tocountrycode", tocountrycode);
    request_data.put("to", to_no);
    request_data.put("body", sms_message);
     
    // calling message360 api using the given parameters
    resp = postUrl(apiurl, request_data, headers, false);
     
    // you can use resp_status for failure handling
    resp_status = resp.get("responseCode");
    info resp_status;
    }
  5. Click Save.

To associate the above custom function to a workflow rule

  1. Click (theSettings icon) > Setup > Automation > Workflow Automation > Rules.
  2. In the Workflow Rules page, click the Create Rule.
  3. In the Create New Rule tab, specify workflow rule parameters.
  4. Select the Custom Function to be triggered, under Instant Actions.
  5. Click Save.

You can now send SMS to your new Leads/Contacts using the message360 integration.

Uninstall message360˚

When you wish to uninstall message360˚ extension, please note that all the data will be deleted on uninstalling and it cannot be recovered.

To uninstall message360˚

  1. Go to Setup > Marketplace > All.
    All the installed extensions are listed. Under All Extensions you can view all the extensions supported in CRM.
  2. Browse for message360˚ and click the corresponding Uninstall link.
  3. Click Ok to confirm.
    The extension will be uninstalled and all the data related to message360˚ will be deleted.
    • Related Articles

    • Python SDK - An Overview

      Python SDK offers a way to create client python applications that can be integrated with Zoho CRM. This SDK makes the access and use of necessary CRM APIs with ease. In other words, it serves as a wrapper for the REST APIs, making it easier to use ...
    • Twilio Extension for Zoho CRM

      How Can I... Install Twilio SMS extension Configure Twilio SMS extension Send SMS using Twilio SMS extension Automated SMS View incoming SMS Uninstall Twilio SMS extension Twilio is a cloud communication system that provides SMS services to its ...
    • ClickaTell extension for Zoho CRM

      How Can I... Install ClickaTell extension Configure ClickaTell extension Send SMS using ClickaTell extension Automated SMS Uninstall ClickaTell extension Clickatell is a cloud communication system that provides SMS services to its users. By ...
    • Tencent Extension for Zoho CRM

      How Can I... Install Tencent extension Send SMS View Tencent History Add SMS Template Uninstall Tencent extension Tencent is a cloud SMS services system that provides global and domestic SMS services to its users. By integrating Tencent with Zoho ...
    • InsideView Extension for Zoho CRM

      InsideView is a sales intelligence platform that can help you gain comprehensive information about your Zoho CRM records. This extension leverages InsideView APIs and helps you enrich Zoho CRM information. You can fast-track your Account/Lead/Contact ...