with Papersign and Email?
Get a unique address where you can send emails to trigger your workflow.
Emit new event when a document is completed, i.e., all signers have signed.
Emit new event when any document or signer action occurs.
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com
Dispatches a document to a specified recipient. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
papersign: {
type: "app",
app: "papersign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.paperform.co/v1/papersign/documents`,
headers: {
Authorization: `Bearer ${this.papersign.$auth.access_token}`,
"accept": `application/json`,
},
})
},
})
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});