Since I m using DNN to built module, I m also wish to utilize as much as possible from DNN framework.
To send Email, I m just simply use API below
DotNetNuke.Services.Mail.Mail.SendMail
A single line of code to solve a problem. Here the simple example I used :
DotNetNuke.Services.Mail.Mail.SendMail(FromAddress, SendTo, "", Title, output.ToString(), "", "", "", "", "", "");
The method you describe works fine and I also use it the same way.
I love your blog!
Great info for sure. How do you go about finding these DNN methods?
hi, i just browse through those api(s) which offered by the DNN framework.
I see I see. Thanks for the quick response.