Castle.MonoRail.Framework.Controller.RenderMailMessage C# (CSharp) Method

RenderMailMessage() public method

Creates an instance of Message using the specified template for the body
public RenderMailMessage ( string templateName ) : Message
templateName string /// Name of the template to load. /// Will look in Views/mail for that template file. ///
return Message
		public Message RenderMailMessage(string templateName)
		{
			return RenderMailMessage(templateName, false);
		}

Same methods

Controller::RenderMailMessage ( string templateName, bool doNotApplyLayout ) : Message