Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Get a unique address where you can send emails to trigger your workflow.
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The Kickbox API on Pipedream allows you to verify email addresses to improve deliverability and reduce bounce rates. With this API, you can integrate email validation into your application's signup process, maintain the hygiene of your email lists, and orchestrate workflows involving email verification with various apps supported by Pipedream. By leveraging serverless workflows, you can automate tasks like updating CRM contacts, triggering marketing campaigns, or filtering out invalid emails before sending out newsletters.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kickbox: {
type: "app",
app: "kickbox",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.kickbox.com/v2/verify`,
params: {
email: `sergio@pipekit.pro`,
apikey: `${this.kickbox.$auth.api_key}`,
},
})
},
})