As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
no verification email being sent albeit it returned success
Mark Thien
started a topic
over 8 years ago
Hi guys,
I tried to send verification email from java code but there was no email being sent out as I did not receive any email albeit it returned success. below are my code:
final AsyncUser asyncUser = mKinveyClient().user();
asyncUser.create(username, password, new KinveyUserCallback() {
Can you please confirm that the email address you were using to test this exists and is typed properly? We haven't been able to reproduce this internally at this time.
Thanks,
x
xsinfosol inc
said
over 6 years ago
I am too unable to send Email Verification request. It gives me following error when I tr to do so. com.kinvey.java.core.KinveyJsonResponseException: MissingRequestParameter A required parameter is missing from the request
Mark Thien
I tried to send verification email from java code but there was no email being sent out as I did not receive any email albeit it returned success. below are my code:
final AsyncUser asyncUser = mKinveyClient().user();
asyncUser.create(username, password, new KinveyUserCallback() {
@Override
public void onSuccess(User u) {
u.put("email", email1);
asyncUser.update(u, new KinveyUserCallback() {
mKinveyClient().user().sendEmailVerification(new KinveyUserManagementCallback() {
@Override
public void onFailure(Throwable e) {
Log.e("send email verification failed : ", e.getMessage());
}
@Override
public void onSuccess(Void unused) {
Log.i("send email verification success send to ", email);
}
});
});
}
});
Appreciate any help please. Thanks !
Cheerios,
Mark Thien