What do I send as the owner for a MailDefinition.CreateMailMessage() sent through an ASP.Net MVC Controller?
// owner:
// The System.Web.UI.Control that owns this System.Web.UI.WebControls.MailDefinition.
public MailMessage CreateMailMessage(string recipients, IDictionary replacements, Control owner);
Edit: sending a new System.Web.UI.Control() seems to work ok. Is there a different/standard solution?