Alpinely.TownCrier.MailMessageWrapper.WithPlainTextBodyFromFile C# (CSharp) Method

WithPlainTextBodyFromFile() public method

public WithPlainTextBodyFromFile ( string filename ) : MailMessageWrapper
filename string
return MailMessageWrapper
        public MailMessageWrapper WithPlainTextBodyFromFile(string filename)
        {
            return WithPlainTextBody(File.ReadAllText(filename));
        }