Quellcode durchsuchen

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

tags/8.7.0.alpha1
Leviand vor 5 Jahren
Ursprung
Commit
893bfbe119
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      documentation/articles/SendingEmailFromJavaApplications.asciidoc

+ 1
- 1
documentation/articles/SendingEmailFromJavaApplications.asciidoc Datei anzeigen

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

Laden…
Abbrechen
Speichern