浏览代码

Removed typo in method , there was an extra ")" (#11295)

tags/8.7.0.alpha1
Leviand 5 年前
父节点
当前提交
893bfbe119
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      documentation/articles/SendingEmailFromJavaApplications.asciidoc

+ 1
- 1
documentation/articles/SendingEmailFromJavaApplications.asciidoc 查看文件

@@ -134,7 +134,7 @@ follows:
HtmlEmail email = new HtmlEmail();
email.setHostName("localhost");
email.setSmtpPort(9090);
email.setAuthentication()"sender@test.com", "password");
email.setAuthentication("sender@test.com", "password");
....
 
Or if you want to use Gmail:

正在加载...
取消
保存