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-13 16:40:32 +0200 |
commit | 26368c1edc0763665638a6ea501f24d73af0d52c (patch) | |
tree | 1518314743ce12b4203b6d5c736b6711f84526e7 | |
parent | 224c135a5d482b6d71ef2a6991b0d0c25efec5ce (diff) | |
download | vaadin-framework-26368c1edc0763665638a6ea501f24d73af0d52c.tar.gz vaadin-framework-26368c1edc0763665638a6ea501f24d73af0d52c.zip |
Removed typo in method , there was an extra ")" (#11295)
-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: |