craigdba Posted May 22, 2007 Share Posted May 22, 2007 I am having issues when trying to send mail with blat, i think it is the stunnel part I am getting The SMTP server does not support AUTH LOGIN Are you sure the server support AUTH The SMTP server does not like the sender name Have you set your mail address correctly =============== send.bat =============== :: Configure Email Options SET emailfrom=name@gmail.com SET emailto=name@gmail.com SET password=password stunnel-4.11.exe -install -quiet net start stunnel GOTO mailproc :cleanup net stop stunnel stunnel-4.11.exe -uninstall -quiet GOTO end :mailproc blat.exe -base64 -to %emailto% -u %emailfrom% -pw %password% -f %emailfrom% -server smtp.gmail.com -s "TEST" -body "TEST" -p 465 GOTO cleanup :end ==================== stunnel.conf ==================== client = yes debug = debug verify=0 taskbar=no [smtp Gmail] accept=localhost:1099 connect=smtp.gmail.com:465 Can anyone help? Cheers Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.