Email config
-
Seems I am having a senior moment
How do you set up an SMTP config in Typebot ?I have tried with my Cloudron's server as host, and username / password from my primary user.
App is set in email to outbound only.
Tried also with an inbound-enabled account. -
This post is deleted!
-
This post is deleted!
-
Seems that adding an account in
env.sh
does work. -
-
-
@timconsidine It's already pre-setup to use Cloudron Mail Server. Does that not work?
export SMTP_USERNAME="$CLOUDRON_MAIL_SMTP_USERNAME" export SMTP_PASSWORD="$CLOUDRON_MAIL_SMTP_PASSWORD" export SMTP_HOST="$CLOUDRON_MAIL_SMTP_SERVER" export SMTP_PORT="$CLOUDRON_MAIL_SMTP_PORT" export SMTP_AUTH_DISABLED=true
-
My install did not seem to have a configured email account until I set those details manually in
env.sh
.
I just got the form as in original post.
When I tried to enter provided data, I got a UI message along lines of "config not created, can't send test email".
When I put the necessary details in env.sh, it worked. -
@girish said in Email config:
@timconsidine It's already pre-setup to use Cloudron Mail Server. Does that not work?
export SMTP_USERNAME="$CLOUDRON_MAIL_SMTP_USERNAME" export SMTP_PASSWORD="$CLOUDRON_MAIL_SMTP_PASSWORD" export SMTP_HOST="$CLOUDRON_MAIL_SMTP_SERVER" export SMTP_PORT="$CLOUDRON_MAIL_SMTP_PORT" export SMTP_AUTH_DISABLED=true
-
Thanks for answering, you made my day.