Forum Moderators: open

Message Too Old, No Replies

looking for smtp engine that uses smarthost

trying to send emails using W2K & ASP

         

alxdean

5:01 pm on Nov 26, 2003 (gmt 0)

10+ Year Member



this problem has been doing my head in and I hope to find some ideas here at WW.
up until recently I was using my built in smtp engine on my webserver to send my newsletter quite happily until more and more servers reject my emails as it might be spam. the whole dynamic IP address issue.
So when I try using my isp's host as smart host, al I get is some smtp error message about AUTH not being recognised.
I've been on the hunt for sopmething that can replace the IIS smtp engine and use ESMTP and give me a bit more control over the verbs used. but with no success.
I tried Mercury/32 and nothing gets sent, tried Xmail and nothing gets sent and after hours of searching I can't find a viable free solution to this problem.

Mercury should work ok in theory and I can send an email using the console but when executing my script nothing gets sent, nothing gets put int he qeue and nothing ever happens on the mercutry console.

would be great if anybody has had issues with using mercury while IIS was running OR has a bulletproof solution and is willing to share that info with me.

bakedjake

5:04 pm on Nov 26, 2003 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month



One bulletproof method is to write to a local disk queue and then have a local mailer do the processing (or forward to a smart host - that's configurable in the MTA). MDaemon works nicely for this, but you can do it with sendmail or anything else, really.

The only failure (except for acts of God) is having a full disk. But you've got other problems in that case. :)

alxdean

2:15 pm on Nov 29, 2003 (gmt 0)

10+ Year Member



what a genious idea. why did I not think of that. create my mail messages manually. and as any mailer will check the qeue every couple of seconds it is bound to get sent.
Hmm. have to learn **** loads more about email headers and how to encode the messages properly but I guess I'll figure that out sooner or later.

jake, you're a star!