Last active
October 12, 2015 05:48
-
-
Save devfred/3980430 to your computer and use it in GitHub Desktop.
csharp: Send email through DotNetNuke Frameworkork
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using DotNetNuke.Services.Mail.Mail.SendMail; | |
public void ModuleSendMail(string from, string to, string subject, string body){ | |
Mail.SendMail(from, to, "", subject, body, "", "HTML", "", "", "", "" ); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment