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.
Adds a new contact to a selected list in the user's Mailercloud account. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
Creates a new list in the user's Mailercloud account. See the documentation
Update an existing contact in the user's Mailercloud account. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
Mailercloud API opens the door to robust email marketing and automation possibilities. Within Pipedream's serverless environment, you can leverage this API to create, send, and track email campaigns, manage subscriber lists, and analyze performance metrics. It fits seamlessly into workflows that require communication with customers or internal teams, growing and nurturing leads, or automating email-based tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailercloud: {
type: "app",
app: "mailercloud",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://cloudapi.mailercloud.com/v1/client/plan`,
headers: {
"Authorization": `${this.mailercloud.$auth.api_key}`,
},
})
},
})