/// <summary> /// Append the body of the mail from a file /// </summary> public Boolean AppendBodyFromFile(String FilePath) { try { return(_mail.AppendBodyFromFile(FilePath)); } catch { return(false); } }