i using email verification feature parse offers , users able resend email verification if fails send or cannot see it. last saw, parse not offer intrinsic way (stupid) , people have been half-hazzerdly writing code change email , change trigger re-send. has there been updates or changing email original , still way? thanks
you should need update email existing value. should trigger email verification sent. haven't been able test code, should how various platforms.
// swift pfuser.currentuser().email = pfuser.currentuser().email pfuser.currentuser().saveinbackground() // java parseuser.getcurrentuser().setemail(parseuser.getcurrentuser().getemail()); parseuser.getcurrentuser().saveinbackground(); // javascript parse.user.current().set("email", parse.user.current().get("email")); parse.user.current().save();
Comments
Post a Comment