Send Mail APIs

You can send emails to the email IDs of other records in Zoho Vertical Solutions only

  • From your account's primary email and the organization's email addresses (if you have not configured Email under Setup).
  • From the configured email addresses, email aliases, and the organization's email address (if you have configured IMAP/POP/GMail).

Get the list of allowed "from" addresses

Purpose

To get the list of email addresses that you can send emails from.

Request Details

Request URL

All - {api-domain}/crm/{version}/settings/emails/actions/from_addresses

Scope

scope=ZohoCRM.settings.emails.READ

Sample Request

Copiedcurl "https://zylkercorp.zohoplatform.com/crm/v6/settings/emails/actions/from_addresses"
-X GET
-H "Authorization: Zoho-oauthtoken 100xx.d92d4xxxxxxxxxxxxx15f52"

Sample Response

Copied{
    "from_addresses": [
        {
            "user_name": "Patricia Boyle",
            "type": "primary",
            "email": "pat.boyle@abc.com",
            "id": null
        },
        {
            "user_name": "user2",
            "type": "imap",
            "email": "email2@gmail.com"
        },
        {
            "user_name": "user3",
            "type": "imap",
            "email": "email3@gmail.com"
        },
        {
            "user_name": "J Smith",
            "id": "3652397000002381001",
            "type": "org_email",
            "email": "j.smith@abc.com"
        }
    ]
}