Browse Source

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

tags/8.7.0.alpha1
Leviand 5 years ago
parent
commit
893bfbe119
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      documentation/articles/SendingEmailFromJavaApplications.asciidoc

+ 1
- 1
documentation/articles/SendingEmailFromJavaApplications.asciidoc View File

@@ -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:

Loading…
Cancel
Save