S
shapper
Hello,
I am creating the body of a mail message to be sent using
StringBuilder:
StringBuilder body = new StringBuilder();
body.AppendFormat("{0},", userName);
body.AppendLine();
body.AppendLine();
body.AppendLine("How are you?");
How should I create empty lines? User various ApendLine as n the
previous example or maybe using <br />:
StringBuilder body = new StringBuilder();
body.AppendFormat("{0},<br/><br/>", userName);
body.AppendLine("How are you?");
or maybe some other way?
Thanks,
Miguel
I am creating the body of a mail message to be sent using
StringBuilder:
StringBuilder body = new StringBuilder();
body.AppendFormat("{0},", userName);
body.AppendLine();
body.AppendLine();
body.AppendLine("How are you?");
How should I create empty lines? User various ApendLine as n the
previous example or maybe using <br />:
StringBuilder body = new StringBuilder();
body.AppendFormat("{0},<br/><br/>", userName);
body.AppendLine("How are you?");
or maybe some other way?
Thanks,
Miguel