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 via the event bus to another vert.x instance registered as
vertx.mail
. This will use the config set by the service and doesn’t use a local
config object.
This example shows how to leave out the From address in a mail but setting the bounceAddress property instead.
the example deploys the mail service, however you can refactor the example to skip this step and start the service as follows:
vertx run service:io.vertx.mail-service
and vertx will pick up the package from maven and start it with default config.
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.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。