come si formatta una mail... ovvero riuscire a riceverla in modo cliccabile direttamente nel messaggio di posta ?
![]()
mail.Body = LName.Text & " " & FName.Text & Email.Text
Grazie!
come si formatta una mail... ovvero riuscire a riceverla in modo cliccabile direttamente nel messaggio di posta ?
![]()
mail.Body = LName.Text & " " & FName.Text & Email.Text
Grazie!
de gustibus non disputandum est
puoi formattare l'email come html:
e poi generare l'html che ti serve:codice:emailObject.BodyFormat = MailFormat.Html
magari così è un po' più carino, credo che si possafare anche in VB.Net (io uso C# e faccio fatica a ricordarmi il VB...):codice:emailObject.Body = "<a href=\""& url &"\" target=\"_blank\">"& name &"</a>"
spero ti sia utile.codice:emailObject.Body = String.Format("<a href=\"{0}\" target=\"_blank\">{1}</a>",url,name)
ciao.
If you want a picture of the future, imagine a boot stamping on a human face-for ever.