の変更を\ nか、StringBuilderクラス
StringBuilder sb= new StringBuilder();
sb.AppendLine("Body text here");
sb.AppendLine("New line start here ");
string body=sb.ToString();
を使用することができるか、あなたはまた、HTML形式の本文を作成することができます。
また、代わりに文字列の連結のstring.Formatを使用このアプローチでは、任意の種類のメール本文、色の書式設定を作成できます
StringBuilder sb= new StringBuilder();
sb.AppendLine("<table>");
sb.AppendLine("<tr><td>");
sb.AppendLine("Body text here");
sb.AppendLine("</tr></td>");
sb.AppendLine("<tr><td>");
sb.AppendLine("New line start here ");
sb.AppendLine("</tr></td>");
sb.AppendLine("</table>");
string body=sb.ToString();
あなたの電子メールの本文にhtml書式を使用し、
を使用して、行を壊す場所を指定してください。 – jamiedanq