Handle Discourse email replies
@pd
code:
data:privatelast updated:2 years ago
today
Build integrations remarkably fast!
You're viewing a public workflow template.
Sign up to customize, add steps, modify code and more.
Join 800,000+ developers using the Pipedream platform
steps.
trigger
active
last updated:-last event:-
steps.
discourse
auth
to use OAuth tokens and API keys in code via theauths object
(auths.discourse)
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps, auths) => {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
}
16
// Discourse will accept the raw email, parse it, and post it to the right topic
// See https://meta.discourse.org/t/configuring-reply-via-email/42026
return await require("@pipedreamhq/platform").axios(this, {
  method: "POST",
  url: `https://${auths.discourse.domain}/admin/email/handle_mail`,
  headers: {
    "Api-Username": `${auths.discourse.api_username}`,
    "Api-Key": `${auths.discourse.api_key}`,
    "Content-Type": "application/json",
  },
  data: {
    email: event.content
  }
})