Here you’ll find some examples how to use Vert.x mail-service to send mails to a SMTP server either from the local machine or via the event bus on another machine.
By default these example starts a "fake" mails server (just logging on the console):
LocalSmtpServer.start(2526);
If you want to use a different SMTP server, just remove this line and configure the options.
The examples use a few different configs
Just send a mail without authentication.
Send a mail to an external smtp server (e.g. googlemail, sendgrid, aol etc) requiring a login.
The login will currently use DIGEST-MD5, CRAM-MD5, PLAIN and LOGIN in order of
preference. If the server announces AUTH but you don’t need it (e.g. if you are
authenticated by a local ip address) turn login off with LoginOption.DISABLE
.
To specifically select an AUTH method or define the order of preference, you
can do setAuthMethods("METHOD1 METHOD2")
.
Send a mail with supplied headers (e.g. Received, Message-ID, Reply-To)
This example shows how you can send headers in a mail.
This example shows how to send inlined images in mails.