SocialSyncs supports two email providers: Resend and NodeMailer (SMTP).If you have an email provider configured, then new users will require activation.
EMAIL_PROVIDER: "resend|nodemailer"
You must also set the sender name and email address for all providers as follows;
This is an alternative to Resend. You can use NodeMailer, which is simply a SMTP library, to connect to any SMTP server.
EMAIL_PROVIDER: "nodemailer"EMAIL_HOST: "smtp.gmail.com" # smtp host if you choose nodemailerEMAIL_PORT: "465" # smtp port if you choose nodemailerEMAIL_SECURE: "true" # smtp secure if you choose nodemailerEMAIL_USER: "user" # smtp user if you choose nodemailerEMAIL_PASS: "pass" # smtp pass if you choose nodemailer