Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I prepare some data for the sharing:

        package = package ?? new DataPackage();

        package.Properties.Title = "Event: " + data.Name;

        var text = new StringBuilder().AppendFormat(@"
Start at.   {0:F}<br/>
End at.     {1:F}<br/>
Total time. {2}<br/>
", data.StartTime, data.EndTime, data.TotalTime);


        var textHtml = text.ToString();
        package.SetText(textHtml.Replace("<br/>", ""));
        package.SetHtmlFormat(textHtml);

The like breaks shown fine in some apps (eg. Tweetro), but ignored in Mail. Any ideas how this can be fixed?

share|improve this question

1 Answer

You provide both Text and Html to the package.

So depending on what the target app accepts, it will use Text or Html. In your Text, your replace <br/> by an empty string. So you won't have line break.

Have you tried replacing by "\n" instead ? '\n' is the caracter for new line.

    package.SetText(textHtml.Replace("<br/>", "\n"));
share|improve this answer
I'm using @-quoting, new lines in my code will be in the string also, so I will have line breaks. – ie. Oct 23 '12 at 22:22
Indeed, my mistake ! I tried different ways and normally line breaks should appear. Anyway, when you share something, it's up to the target app to handle what you send. And if that apps wants to remove line breaks to show an in-line string, you can't do nothing. – Renaud Dumont Oct 24 '12 at 8:31
I see, but in my case I don't care about some hypothetical app. I need to force Mail to leave line breaks – ie. Oct 24 '12 at 9:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.