R 
		
								
				
				
			
		Ramon
I send email using ASP.NET using SMTP like this:
objMailMessage.From = New System.Net.Mail.MailAddress(strYourEmail)
objMailMessage.To.Add([email protected])
objMailMessage.Subject = "Title"
objMailMessage.Body = "Message"
objMailMessage.IsBodyHtml = False
smtp.Send(objMailMessage)
I get the email and all accents are funny characters.
Suggestion to avoid the funny characters?
txs for answering....
				
			objMailMessage.From = New System.Net.Mail.MailAddress(strYourEmail)
objMailMessage.To.Add([email protected])
objMailMessage.Subject = "Title"
objMailMessage.Body = "Message"
objMailMessage.IsBodyHtml = False
smtp.Send(objMailMessage)
I get the email and all accents are funny characters.
Suggestion to avoid the funny characters?
txs for answering....