G
Guest
Hello
I'm using the following code to send mail from VB.NET 2003
oMail.SmtpServer = "xxx.xxx.com"
Mailmsg.To = "(e-mail address removed)"
Mailmsg.From = "\Joe Blow\"
Mailmsg.BodyFormat = MailFormat.Html
Mailmsg.Subject = "TEST"
Attachment = New MailAttachment(sDirectory & "\manifest.txt")
Mailmsg.Attachments.Add(Attachment)
oMail.Send(Mailmsg)
The attachment shows up as an icon in the message body when viewed in
Outlook. How do I make the attachment appear in the "header" and not as
an icon in the body? I need the body to be blank.
Help very much appreciated !
I'm using the following code to send mail from VB.NET 2003
oMail.SmtpServer = "xxx.xxx.com"
Mailmsg.To = "(e-mail address removed)"
Mailmsg.From = "\Joe Blow\"
Mailmsg.BodyFormat = MailFormat.Html
Mailmsg.Subject = "TEST"
Attachment = New MailAttachment(sDirectory & "\manifest.txt")
Mailmsg.Attachments.Add(Attachment)
oMail.Send(Mailmsg)
The attachment shows up as an icon in the message body when viewed in
Outlook. How do I make the attachment appear in the "header" and not as
an icon in the body? I need the body to be blank.
Help very much appreciated !