Hi stabes,
stabes
newMail.SendMail(new[] { email }, "Membership Renewal Reminder", body);
stabes
Compiler Error Message: CS0165: Use of unassigned local variable 'body'
According to the error message, local variable called 'body' isn't initialized. You have to manually initialize the variable. Please check if the 'body' is not initialized.
Best Regards,
Klein zhang