Hi,
We're using a custom module to send a confirmation email when a customer registers on our site. We're using the following code block:
DotNetNuke.Services.Mail.Mail.SendMail(PortalSettings.Email, NewDNNUser.Email, "", _
DotNetNuke.Services.Localization.Localization.GetSystemMessage(NewDNNUser.Profile.PreferredLocale, PortalSettings, "EMAIL_USER_REGISTRATION_PRIVATE_SUBJECT", NewDNNUser), _
DotNetNuke.Services.Localization.Localization.GetSystemMessage(NewDNNUser.Profile.PreferredLocale, PortalSettings, "EMAIL_USER_REGISTRATION_PRIVATE_BODY", NewDNNUser), _
"", "", "", "", "", "")
The portal admin receives an email message with empty contents. I've verified that the above subject and body tokens are populated in the Global Resources folder. Can anyone suggest alternatives that might help us remedy the situation?
Thanks,
Sid