Send an email on successful user registration. Use Gmail API for that. Add password confirmation and email to RegisterUserDialog.

This commit is contained in:
Me Car 2016-01-10 18:08:08 +09:00
parent 46f60cd857
commit a0ddd4fff0
11 changed files with 328 additions and 70 deletions

View file

@ -45,6 +45,7 @@ public class Connection {
private int port;
private String username;
private String password;
private String email;
private String adminPassword;
private ProxyType proxyType;
private String proxyHost;
@ -173,6 +174,14 @@ public class Connection {
this.password = password;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getAdminPassword() {
return adminPassword;
}