Re: [ADVANCED-DOTNET] Web Mail

2002-12-16 Thread Barraud Peter(KSA)
ok just a few clarifications: ## in my "real" I DON'T have a text box for the smtp server ## if I can aviod using outlook I will definitely prefer that, I have managed that already and it works but in a very primitive manner so I'm using that right now but would like to reply this by using cdonts A

Re: [ADVANCED-DOTNET] Web Mail

2002-12-13 Thread Chad M. Gross
ot;outlook mail" > writetolog(err) >MsgBox(err.Message & vbCrLf & "++" & vbCrLf & >err.ToString) >End Try >objMail = Nothing >objInbox = Nothing >objNameSpace = Nothing >objOut

Re: [ADVANCED-DOTNET] Web Mail

2002-12-13 Thread Saye, Robert
err.Source = "web mail 2" writetolog(err) MsgBox(err.Message & vbCrLf & "++" & vbCrLf & err.ToString) End Try -Original Message- From: Barraud Peter(KSA) [mailto:[EMAIL PROTECTED]] Sent:

Re: [ADVANCED-DOTNET] Web Mail

2002-12-13 Thread Mike Timms
amp; err.ToString) End Try objMail = Nothing objInbox = Nothing objNameSpace = Nothing objOutlook = Nothing End Sub -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 12:52 AM To: [EMAIL PROT

Re: [ADVANCED-DOTNET] Web Mail

2002-12-12 Thread Barraud Peter(KSA)
err.Source = "outlook mail" writetolog(err) MsgBox(err.Message & vbCrLf & "++" & vbCrLf & err.ToString) End Try objMail = Nothing objInbox = Nothing objNameSpace = Nothing 

Re: [ADVANCED-DOTNET] Web Mail

2002-12-11 Thread Julian Skinner
iginal Message- > From: Brady Gaster [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, December 11, 2002 9:42 PM > To: [EMAIL PROTECTED] > Subject: Re: [ADVANCED-DOTNET] Web Mail > > > Make sure you are telling the SmtpMail object which server to > use to send > the mail.

Re: [ADVANCED-DOTNET] Web Mail

2002-12-11 Thread Urs Eichmann
You shouldn't install Outlook on a server. If you do, you'll have problems if you run Exchange Server on the same machine. Urs -Original Message- From: Frederic Gos [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 4:07 PM To: [EMAIL PROTECTED] Subject: Re: [ADVAN

Re: [ADVANCED-DOTNET] Web Mail

2002-12-11 Thread JustinPitts
Web.Mail does depend upon CDO. If you do not wish to depend upon CDO for SMTP client capabilities, then you can purchase something like IPWorks for .Net http://www.nsoftware.com/products/showprod.aspx?part=IPN5-A or you can try an open source solution like OpenSmtp http://sourceforge.net/projects

Re: [ADVANCED-DOTNET] Web Mail

2002-12-11 Thread Brady Gaster
; To: [EMAIL PROTECTED] > Subject: Re: [ADVANCED-DOTNET] Web Mail > > > Hi Peter, > > Do you have the IIS SMTP service running and configured in > the server? If not, try to install that. > > btw, I know you stated that 'smtp server is another machine' > bu

Re: [ADVANCED-DOTNET] Web Mail

2002-12-11 Thread Booth, Bill
Here is a good source of CDO info. http://www.cdolive.com/cdo1.htm I think they are installing Outlook just to make sure CDO is installed. -Original Message- From: Barraud Peter(KSA) [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 6:53 PM To: [EMAIL PROT

Re: [ADVANCED-DOTNET] Web Mail

2002-12-11 Thread Iain Smallwood
From: Barraud Peter(KSA) [mailto:[EMAIL PROTECTED]] > I've created this simple app that sends mail using .net's web > mail in vb.net > now if I run it off my machine it runs just fine > but if I run it off the server then it gives an error "Could > not create CDO. > Message object" > The server co

Re: [ADVANCED-DOTNET] Web Mail

2002-12-11 Thread Saye, Robert
I had quite a few problems with Web mail, could you put the code you are using to initialize the object. I got this same error and want to see if you are doing what I did. -Original Message- From: Barraud Peter(KSA) [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09,

Re: [ADVANCED-DOTNET] Web Mail

2002-12-11 Thread Frederic Gos
Hi Peter, Do you have the IIS SMTP service running and configured in the server? If not, try to install that. btw, I know you stated that 'smtp server is another machine' but I think that CDOSYS.DLL comes with the SMTP server. Hope this helps Frederic -O