SMTPMail Object Question

  • Thread starter Thread starter Carlos Cordon
  • Start date Start date
C

Carlos Cordon

If my SMTP server requires authentication how should the "Server" string be
sent? If there is a way.

Thanks
 
Carlos Cordon said:
If my SMTP server requires authentication how should the "Server" string be
sent? If there is a way.

Your question doenst make sense to me. If the server needs auth - you cannot
just "hack" it on. Auth for SMTP supports about a dozen different ways and
most are not simple to implement. Best to use a tool that supports it. You
can try Indy, its free and supports all the common auth schemes.

www.indyproject.org

SMTP example in C# and VB:
www.atozed.com/indy
 
I want to send a mai message from my web page but my SMTP server requires
authentication. My question is: Is this possible using only the Mail.Message
object and SMPT.Mail object. If so how should I send the username and
password to the SMTP server?

Thanks
 
Carlos Cordon said:
I want to send a mai message from my web page but my SMTP server
requires authentication. My question is: Is this possible using only the
Mail.Message object and SMPT.Mail object. If so how should I send the
username and password to the SMTP server?

Again - it depends on what kind of Auth scheme your server requires. I gave
you a guaranteed free solution in my last message. ;)
 
Thanks!! That works great! :)

Chad Z. Hower aka Kudzu said:
Again - it depends on what kind of Auth scheme your server requires. I gave
you a guaranteed free solution in my last message. ;)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

smtpMail 3
Contact us form SMTP mail sending error.. 4
Authenticated SMTP 1
SMTPMAIL 3
How to use SmtpMail on non-standard port? 1
SMTP Mail issues 4
Sending Email 1
send mail with gmail 5

Back
Top