Example #1
0
 public static void AssertHtmlViewChecks(this MockEmail email)
 {
     email.AssertViewChecks(MediaTypeNames.Text.Html, null, true, null);
 }
Example #2
0
 public static void AssertHtmlViewChecks(this MockEmail email, string rootPath, bool checkLineLengths, string[] longLines)
 {
     email.AssertViewChecks(MediaTypeNames.Text.Html, rootPath, checkLineLengths, longLines);
 }
Example #3
0
 public static void AssertViewChecks(this MockEmail email, string mimeType)
 {
     email.AssertViewChecks(mimeType, null, true, null);
 }