|
-
Mar 29th, 2004, 04:19 PM
#1
Thread Starter
Frenzied Member
Send Mail in Windows 98 Not Working
I have included a mailing feature in my latest project and seem to have come across a pretty big problem. Durring testing, I tried to send an email from a Windows 98 machine and recieved an error telling me that the feature is only available in the later versions of the Windows operating system.
Below is a sample of the code I was trying to use. Does anyone know what I have to install on the client machine for this to work, or is there another way of sending an email through an SMTP server?
VB Code:
Dim Mail As New MailMessage
Try
Mail.From = MailAddress
Mail.Subject = ComName
Mail.BodyFormat = MailFormat.Text
Mail.Body = BuildBody()
SmtpMail.SmtpServer = MailServer
SmtpMail.Send(Mail)
Catch ex As Web.HttpException
MsgBox("Error: Check Settings.")
Dim request As frmSettings = New frmSettings
request.ShowDialog()
request.Select()
LoadSettings()
Exit Sub
End Try
Thanks for any help you all can offer,
Squirrelly1
Last edited by squirrelly1; Mar 30th, 2004 at 10:11 AM.
Now happily married and still crankin' away at the keyboard.  Life is grand for a coder, no?
-
Mar 31st, 2004, 08:55 AM
#2
Frenzied Member
well, looking at the msdn, the 'platforms' section doesn't list 9x at all. I think you're outa luck for 9x.
-
Mar 31st, 2004, 10:55 AM
#3
Thread Starter
Frenzied Member
How can I tell which OS my user is on so I can disable the feature?
thanks
squirrelly1
Now happily married and still crankin' away at the keyboard.  Life is grand for a coder, no?
-
Mar 31st, 2004, 11:06 AM
#4
Frenzied Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|