Has anyone tested resend registration email? (v2023)
Resend registration button shows, but when I click nothing happens.
Microsoft SQL Express , could this be a SQL database setting.
Has anyone tested resend registration email? (v2023)
Resend registration button shows, but when I click nothing happens.
Microsoft SQL Express , could this be a SQL database setting.
After lots of trial and error, I have realized that the resend registration system does not work when I have email sending in place.
When I remove this completely the resend works in ASPM23 and sends the registration email
This code breaks resend registration function. I use this code for another function
// Email Sending event
public bool Email_Sending(Email email, dynamic? args) {
//Log(email);
if (CurrentUserLevel() == "-1")
{
email.Recipient = Convert.ToString(args["rsold"]["email"]);
email.Subject = "Subject Text";
email.Content = "Dear" + " " ;
}
return true;
}
Any help pls, I have use the code as is explained in the help files