Using WodSMTP with Outlook and Lotus Notes - WeOnlyDo Discussion board

Using WodSMTP with Outlook and Lotus Notes (General questions)

by emc, Monday, August 25, 2008, 19:06 (5933 days ago)

Hi,

I'm currently using it with Gmail SMTP and it's working very well.

How do I configure it to work with Outlook (exchange), Outlook Express and Lotus Notes? I found nothing relevant in the manual.

Thanks in advance!

Re: Using WodSMTP with Outlook and Lotus Notes

by woddrazen, Monday, August 25, 2008, 19:53 (5933 days ago) @ emc

Hi,


wodSmtp is client component that is used to deliver email messages directly to the server of the recipient, using SMTP protocol. Outlook Express and Lotus Notes (I suppose) is also client components and it can't be configured to work directly with wodSMTP because they do same job. Actually wodSMTP is used to send message and Outlook is used to send and receive message.

If you want to configure wodSMTP to send message using same email address and configuration you have in your Outlook Express. You need to add Hostname and maybe also Login and Password Property to your code before sending message. Just like you configure your gmail account in wodSMTP. You can find that info in Outlook Express Email Account settings.

Maybe your SMTP server aren't using SSL (SSL is used in gmail server). You can change that in Security Property.

More help for Security Property you can find here:
http://www.weonlydo.com/Smtp/Help/WODSMTPLib~wodSmtp~Security.html

Please try it and let us know how it goes.


Regards,
Drazen

Re: Using WodSMTP with Outlook and Lotus Notes

by emc, Monday, August 25, 2008, 20:44 (5933 days ago) @ woddrazen

Hi,


wodSmtp is client component that is used to deliver email messages directly to the server of the recipient, using SMTP protocol. Outlook Express and Lotus Notes (I suppose) is also client components and it can't be configured to work directly with wodSMTP because they do same job. Actually wodSMTP is used to send message and Outlook is used to send and receive message.

If you want to configure wodSMTP to send message using same email address and configuration you have in your Outlook Express. You need to add Hostname and maybe also Login and Password Property to your code before sending message. Just like you configure your gmail account in wodSMTP. You can find that info in Outlook Express Email Account settings.

Maybe your SMTP server aren't using SSL (SSL is used in gmail server). You can change that in Security Property.

More help for Security Property you can find here:
http://www.weonlydo.com/Smtp/Help/WODSMTPLib~wodSmtp~Security.html

Please try it and let us know how it goes.


Regards,
Drazen

Thanks, but I currently have no Outlook/Exchange/Lotus Notes to test it. I hoped I may get examples to make sure it works...

Re: Using WodSMTP with Outlook and Lotus Notes

by woddrazen, Tuesday, August 26, 2008, 00:09 (5933 days ago) @ emc

Emc,


We don't have sample for Outlook/Lotus Notes because this is client components and client cannot connect to client. wodSMTP is client component also.

Microsoft Exchange Server is server application which supports SMTP protocol and wodSMTP should work with Microsoft Exchange Server.

Here is some basic code how to use wodSMTP with SMTP server.
[code]
wodSmtp1.Authentication = AuthLogin
wodSmtp1.Login = someone@yourhostname.com
wodSmtp1.Password = somepass
wodSmtp1.Hostname = yourhostname.com

wodSmtp1.SendSimple someone( at )yourhostname.com , john( at )gmail( point )com , test , testing
[/code]
Maybe you will need to change authentication type. In sample Login authentication is used. You can change authentication using Authentication Property.

More help for Authentication Property you can find here:
http://www.weonlydo.com/Smtp/Help/WODSMTPLib~wodSmtp~Authentication.html

Hope I helped.


Drazen

Re: Using WodSMTP with Outlook and Lotus Notes

by emc, Tuesday, August 26, 2008, 11:51 (5933 days ago) @ woddrazen

Emc,


We don't have sample for Outlook/Lotus Notes because this is client components and client cannot connect to client. wodSMTP is client component also.

Microsoft Exchange Server is server application which supports SMTP protocol and wodSMTP should work with Microsoft Exchange Server.

Here is some basic code how to use wodSMTP with SMTP server.
[code]
wodSmtp1.Authentication = AuthLogin
wodSmtp1.Login = someone@yourhostname.com
wodSmtp1.Password = somepass
wodSmtp1.Hostname = yourhostname.com

wodSmtp1.SendSimple someone( at )yourhostname.com , john( at )gmail( point )com , test , testing
[/code]
Maybe you will need to change authentication type. In sample Login authentication is used. You can change authentication using Authentication Property.

More help for Authentication Property you can find here:
http://www.weonlydo.com/Smtp/Help/WODSMTPLib~wodSmtp~Authentication.html

Hope I helped.


Drazen

Thanks, I'm trying!

What about MAPI client? Don't you have such utility?

Re: Using WodSMTP with Outlook and Lotus Notes

by woddrazen, Tuesday, August 26, 2008, 16:02 (5933 days ago) @ emc

Emc,


Unfortunately, we don't have a product that does MAPI.

We have POP3 and SMTP server and client components. Also we have IMAP server component.


Drazen