Browse Source

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

tags/8.7.0.alpha1
Leviand 5 years ago
parent
commit
893bfbe119

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

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

Loading…
Cancel
Save