diff options
author | Leviand <andrea.levanti@gmail.com> | 2018-11-08 07:39:08 +0100 |
---|---|---|
committer | Sun Zhe <31067185+ZheSun88@users.noreply.github.com> | 2018-11-08 08:39:08 +0200 |
commit | 893bfbe1195e896e6cc364e064e7823613f1ca36 (patch) | |
tree | 3389ba5d7d8fd285febaf8e536bd30f05eff578a /documentation/articles/SendingEmailFromJavaApplications.asciidoc | |
parent | abcd11db25e99d7fba6918a38dc6034c202d7b2a (diff) | |
download | vaadin-framework-893bfbe1195e896e6cc364e064e7823613f1ca36.tar.gz vaadin-framework-893bfbe1195e896e6cc364e064e7823613f1ca36.zip |
Removed typo in method , there was an extra ")" (#11295)
Diffstat (limited to 'documentation/articles/SendingEmailFromJavaApplications.asciidoc')
-rw-r--r-- | documentation/articles/SendingEmailFromJavaApplications.asciidoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/articles/SendingEmailFromJavaApplications.asciidoc b/documentation/articles/SendingEmailFromJavaApplications.asciidoc index abe04836ba..1411cf5255 100644 --- a/documentation/articles/SendingEmailFromJavaApplications.asciidoc +++ b/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: |