H folks,
I have 2 Discourse forums running with automations.
Community 1
Ony my first community it runs without any automation problems in make.com.
This automation sends the “Activate your account” welcome email.
Community 2
I wanted to set up an N8N Workflow for this Community (instead of make), and the user is fully created in discourse.
Here is a picture of the admin panel:
But the system sends no email.
Here is my JSON:
{
"email": "{{ $json.body.member.current.email }}",
"name": "{{ $json.body.member.current.name }}",
"username": "ToolGuide{{ Math.floor(10000 + Math.random() * 90000) }}",
"password": "{{ $json.body.member.current.uuid }}",
"active": "true",
"approved": "true"
}
In the output, it confirms the crearion:
[
{
"success":
true,
"active":
true,
"message":
"Dein Konto ist nun freigeschaltet und einsatzbereit.",
"user_id":
13
}
]
The Problem with Community 2
The new User doesn’t get any email to activate his new account in discourse ;-(
I tried the manual registration with link and then i get the email, that worked fine.
On this Community 2 I have invite only activated, the api user is system with global rights.
Any ideas or suggetions?
Thx for help and greetings from Germany!







