Skip to content

Instantly share code, notes, and snippets.

@devfred
Last active October 12, 2015 05:48
Show Gist options
  • Save devfred/3980430 to your computer and use it in GitHub Desktop.
Save devfred/3980430 to your computer and use it in GitHub Desktop.
csharp: Send email through DotNetNuke Frameworkork
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