GMAIL API to Send Emails from VAADIN APPS

I’m looking forward to use the GMAIL API to allow my app to send email notifications through my VAADIN APP

I’ll appreciate if someone can help me with some demo code or component that can work, even if it’s not a GMAIL API I’m open to any other solution that can work to achieve the desired result.

Marcel

Don’t think you need gmail api to send mail. Plain Java solution should work:

https://www.baeldung.com/java-email

You need SMTP server that will accept the mail (you can configure your gmail account/server).

Thanks Goran. That solution works flawlessly