Zoho Mail

Zoho Mail offers secure business email for your organization. Host your business email on a secure, encrypted, privacy-guaranteed, and ad-free email service, and add a professional touch to every email that goes out.

Integrate the Zoho Mail API with the Google Drive API

Setup the Zoho Mail API trigger to run a workflow which integrates with the Google Drive API. Pipedream's integration platform allows you to integrate Zoho Mail and Google Drive remarkably fast. Free for developers.

Add File Sharing Preference with Google Drive API on New Email from Zoho Mail API
Zoho Mail + Google Drive
 
Try it
Copy File with Google Drive API on New Email from Zoho Mail API
Zoho Mail + Google Drive
 
Try it
Create a New File with Google Drive API on New Email from Zoho Mail API
Zoho Mail + Google Drive
 
Try it
Create Folder with Google Drive API on New Email from Zoho Mail API
Zoho Mail + Google Drive
 
Try it
Create New File From Template with Google Drive API on New Email from Zoho Mail API
Zoho Mail + Google Drive
 
Try it
New Email from the Zoho Mail API

Emit new event each time a new email is received

 
Try it
Changes to Specific Files from the Google Drive API

Watches for changes to specific files, emitting an event any time a change is made to one of those files. To watch for changes to shared drive files, use the Changes to Specific Files (Shared Drive) source instead.

 
Try it
Changes to Specific Files (Shared Drive) from the Google Drive API

Watches for changes to specific files in a shared drive, emitting an event any time a change is made to one of those files

 
Try it
New Files (Instant) from the Google Drive API

Emit new event any time a new file is added in your linked Google Drive

 
Try it
New or Modified Comments from the Google Drive API

Emits a new event any time a file comment is added, modified, or deleted in your linked Google Drive

 
Try it
Create Task with the Zoho Mail API

Creates a new task. See the docs here

 
Try it
Add File Sharing Preference with the Google Drive API

Add a sharing permission to the sharing preferences of a file or folder and provide a sharing URL. See the docs for more information

 
Try it
Send Email with the Zoho Mail API

Send an email. See the docs here

 
Try it
Copy File with the Google Drive API

Create a copy of the specified file. See the docs for more information

 
Try it
Create a New File with the Google Drive API

Create a new file from a URL or /tmp/filepath. See the docs for more information

 
Try it

Overview of Zoho Mail

The Zoho Mail API enables developers to integrate their applications with the
Zoho Mail platform, allowing them access to a wide range of email and
collaboration features. With the API, developers can build sophisticated email
applications that manage mailing lists, send and receive automated emails,
analyze customer data, manage customer accounts, and more.

The following are a few examples of what you can build using the Zoho Mail API:

  • Create mailing lists and manage contacts
  • Set up automated mailing sequences
  • Analyze customer engagement data
  • Access customer accounts and manage subscriptions
  • Automate the sending of outgoing emails
  • Receive and manage incoming emails
  • Track email delivery rates and performance
  • Connect with 3rd party applications and integrate with other services
  • Create and manage custom customer fields and profiles
  • Streamline customer interactions with automated follow up emails
  • Automatically respond to incoming messages
  • Create and manage user groups
  • Create and manage custom address books and contact lists

Getting Started

  1. First, sign up for Pipedream at https://pipedream.com.
  2. Create a new workflow.
  3. Select a trigger for your workflow (for example, HTTP or Cron).
  4. Add a new step and search for "Zoho Mail". This will display actions associated with the Zoho Mail app. You can choose to either "Run Node.js code with Zoho Mail" or select one of the prebuilt actions for performing common API operations.
  5. Once you've added a step, press the Connect Zoho Mail button near the top. If this is your first time authorizing Pipedream's access to your Zoho Mail account, you'll be prompted to accept that access, and Pipedream will store the authorization grant to enable the workflow to access the API. If you've already linked a Zoho Mail account via Pipedream, pressing Connect Zoho Mail will list any existing accounts you've linked.

Once you've connected your account, you can run your workflow and fetch data from the API. You can change any of the code associated with this step, changing the API endpoint you'd like to retrieve data from, or modifying the results in any way.

Connect Zoho Mail

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    zoho_mail: {
      type: "app",
      app: "zoho_mail",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://mail.${this.zoho_mail.$auth.base_api_uri}/api/accounts`,
      headers: {
        "Authorization": `Zoho-oauthtoken ${this.zoho_mail.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Google Drive

Using the Google Drive API, you can build applications that:

  • Create and manage files and folders
  • Download and upload files
  • Share and organize files
  • Search for files
  • Track changes to files
  • And much more!

Connect Google Drive

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    google_drive: {
      type: "app",
      app: "google_drive",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.google_drive.$auth.oauth_access_token}`,
      },
    })
  },
})