Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Creates or updates a contact within a brand. 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.
Sends an email as part of a transactional campaign. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The BigMailer API enables you to automate your email marketing by interacting with your BigMailer account programmatically. On Pipedream, you can leverage this API to create workflows that respond to events, manage contacts, campaigns, and analyze the effectiveness of your email strategies. By connecting BigMailer to other apps on Pipedream, you can orchestrate complex automations and streamline your email operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bigmailer: {
type: "app",
app: "bigmailer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bigmailer.io/v1/me`,
headers: {
"Accept": `application/json`,
"X-API-Key": `${this.bigmailer.$auth.api_key}`,
},
})
},
})