Lightning-fast forms with diverse integrations, smart conditionals, and exceptional support.
Emit new event when there is a new submission. See the documentation
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.
The FormPress API allows you to create and manage forms dynamically, without needing a backend to process submissions. You can integrate FormPress with Pipedream to automate processes such as capturing form submissions, organizing data, triggering notifications, and connecting responses to various apps or services. Pipedream's serverless platform makes it simple to handle FormPress events and incorporate them into workflows, saving time and eliminating the need to manage infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
formpress: {
type: "app",
app: "formpress",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.formpress.org/api/users/${this.formpress.$auth.oauth_uid}/forms`,
headers: {
Authorization: `Bearer ${this.formpress.$auth.oauth_access_token}`,
},
})
},
})
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});