Gmail offers private and secure email by Google at no cost, for business and consumer accounts.
Emit new event for each new incoming SMS message received. See the documentation
Emit new event for each attachment in a message received. This source is capped at 100 max new messages per run.
Emit new event when a new voice message is received or sent. See the documentation
Emit new event when an email matching the search criteria is received. This source is capped at 100 max new messages per run.
Creates a new contact in a specific list. See the documentation
Create a draft from your Google Workspace email account. See the documentation
Download an attachment by attachmentId to the /tmp directory. See the documentation
Sends a new MMS to one or multiple recipients. See the documentation
By connecting your personal Gmail account to Pipedream, you'll be able to incorporate email into whatever you're building with any of the thousands of apps that are available on Pipedream.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gmail: {
type: "app",
app: "gmail",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.gmail.$auth.oauth_access_token}`,
},
})
},
})
The ClickSend SMS API unlocks the potential to integrate robust messaging capabilities into your workflows. With Pipedream, you can not only send SMS messages programmatically but also automate notifications, streamline communication based on events, and much more. Whether you're confirming orders, alerting staff, or engaging with customers, ClickSend and Pipedream make these tasks seamless.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clicksend: {
type: "app",
app: "clicksend",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.clicksend.com/v3/account`,
auth: {
username: `${this.clicksend.$auth.username}`,
password: `${this.clicksend.$auth.api_key}`,
},
})
},
})