Emailing error for Eudora

  • Thread starter Thread starter tshad
  • Start date Start date
T

tshad

I am trying to send emails from my asp.net program and am getting the
following in my Eudora reader but not my outlook.

------=_NextPart_000_0061_01C5CA8B.2F830DF0

How can I get this to work properly when sent to Eudora browsers?

Thanks,

Tom
 
tshad said:
I am trying to send emails from my asp.net program and am getting the
following in my Eudora reader but not my outlook.

------=_NextPart_000_0061_01C5CA8B.2F830DF0

I am using the following code:

Dim Message As New MailMessage()
message.To = contactEmail
message.From = webMasterEmail
message.Subject = subject
message.body = body
message.BodyFormat = MailFormat.Html
SmtpMail.SmtpServer = mailServer
smtpMail.Send(message)

which is pretty straight forward.

Tom
 
While I haven't used Eudora for a few years, I believe that you're getting
some MIME information in your email that Outlook normally looks for and
strips out before rendering the email. I'm not sure how to get rid of it,
but if I find anything else, I'll post it back here.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top