Pytanie : VB.Net 2008: Wysyłać email using richtextbox jako Ciało Vbnewline i CRLF

I mieć Richtext pudełko na mój zastosowanie.  I provided połączenie nad ono że umożliwiać kiedy the pudełko pokazywać błąd po to, aby the użytkownik móc email the błąd ONO.  The kod praca wielki oprócz tego, że the email tworzyć z the wiadomość mieć na jeden line.

If the rtb mieć:
____________________________
Drop EMP

ERROR:

Can nie kropla the stół "EMP", ponieważ ono istnieć lub ty mieć permission.
____________________________

The e-mail ciało być:
____________________________
Drop EMPERROR:Móc the stół "EMP", ponieważ ono istnieć lub ty mieć pozwolenie.
____________________________

How I dostawać the pełny tekst the rtb the email?

This być mój kod:

(1):
System.Diagnostics.Process.Start ("mailto:[email protected]?Subject=Script App Wiadomość Od: " & uid & "&Body=" & rtbMessage.Text)

Odpowiedź : VB.Net 2008: Wysyłać email using richtextbox jako Ciało Vbnewline i CRLF

Korekcja, zamieniać LineFeeds….

    System.Diagnostics.Process.Start ("mailto:[email protected]?" & _
                                                         "Subject=Script App Wiadomość Od: " & uid & _
                                                         "&Body=" & rtbMessage.Text.Replace (vbLf, "%0a"))
Inne rozwiązania  
 
programming4us programming4us