1 Star 0 Fork 1

光魔科技/vertx-examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.adoc 2.02 KB
一键复制 编辑 原始数据 按行查看 历史
alexlehm 提交于 2017-04-15 11:08 . add a few dots, minor grammar changes.

Vert.x Mail examples

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

MailLocalhost

Just send a mail without authentication.

MailLogin

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").

MailServiceExample

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.

MailHeaders

Send a mail with supplied headers (e.g. Received, Message-ID, Reply-To)

This example shows how you can send headers in a mail.

MailImages

This example shows how to send inlined images in mails.

马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/3kgz/vertx-examples.git
git@gitee.com:3kgz/vertx-examples.git
3kgz
vertx-examples
vertx-examples
master

搜索帮助