send email from web application

send email from web application

Hello,
I'm experiencing an issue with sending emails from my web application. Here are the configuration parameters currently in use:

ini
quarkus.mailer.from=noreply.sedis@mondonovo.net quarkus.mailer.host=smtp.zoho.com quarkus.mailer.port=465 quarkus.mailer.username=noreply.sedis@mondonovo.net quarkus.mailer.password=********* quarkus.mailer.auth-methods=LOGIN quarkus.mailer.start-tls=REQUIRED

Despite this, every attempt to send an email results in an exception.

I’ve reviewed Zoho’s official documentation and also tried the following alternative configurations:

1. For personal users and free accounts (@zohomail.com):

  • SMTP Server: smtp.zoho.com

  • Port: 587

  • Security: TLS

2. For paid accounts with a custom domain (@yourdomain.com):

  • SMTP Server: smtppro.zoho.com

  • Port: 587

  • Security: TLS

Unfortunately, the issue persists even with these settings.