Email Marketing platform for agencies and makers - unlimited brands/users, all email campaign types, support when you need it.
Creates or updates a contact within a brand. See the documentation
Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.
Sends an email as part of a transactional campaign. See the documentation
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}`,
},
})
},
})
You can execute custom Go scripts on-demand or in response to various triggers and integrate with thousands of apps supported by Pipedream. Writing with Go on Pipedream enables backend operations like data processing, automation, or invoking other APIs, all within the Pipedream ecosystem. By leveraging Go's performance and efficiency, you can design powerful and fast workflows to streamline complex tasks.
package main
import (
"fmt"
pd "github.com/PipedreamHQ/pipedream-go"
)
func main() {
// Access previous step data using pd.Steps
fmt.Println(pd.Steps)
// Export data using pd.Export
data := make(map[string]interface{})
data["name"] = "Luke"
pd.Export("data", data)
}