--
--
Caché, Ensemble, DeepSee
---
You received this message because you are subscribed to the Google Groups "Caché, Ensemble, DeepSee" group.
To unsubscribe from this group and stop receiving emails from it, send an email to intersystems-publi...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi All,I am trying to send a mail by using smtp.gmail.com,I got this this error ERROR #6034: SMTP server connection failed during init command: <READ>zGetResponse+5^%Net.SMTP.1.Can you please let me know what's the problem over here? or Any other code is there by using SMTP?set s=##class(%Net.SMTP).%New()set auth=##class(%Net.Authenticator).%New() ; use default authentication list
set auth.UserName="pandiyann07@gmail.com"
set auth.Password="xxxxxxx"set s.authenticator=authset s.smtpserver="smtp.gmail.com"set s.port=465set m=##class(%Net.MailMessage).%New()set m.From="pandi...@gmail.com"
do m.To.Insert("pandiyann07@gmail.com")
set m.Subject="Test mail"do m.TextData.Write("Testing Mail's")set status=s.Send(m)if $$$ISERR(status) do $system.OBJ.DisplayError(status)quitRegards,Pandiyan
--
--
Caché, Ensemble, DeepSee
---
You received this message because you are subscribed to the Google Groups "Caché, Ensemble, DeepSee" group.
To unsubscribe from this group and stop receiving emails from it, send an email to intersystems-public-cache+unsub...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to intersystems-public-cache+unsub...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to intersystems-publi...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--Dmitry Maslennikov
--
--
Caché, Ensemble, DeepSee
---
You received this message because you are subscribed to the Google Groups "Caché, Ensemble, DeepSee" group.
To unsubscribe from this group and stop receiving emails from it, send an email to intersystems-publi...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
set auth.UserName="pandi...@gmail.com"
set auth.Password="xxxxxxx"set s.authenticator=authset s.smtpserver="smtp.gmail.com"set s.port=465set m=##class(%Net.MailMessage).%New()set m.From="pandi...@gmail.com"
do m.To.Insert("pandi...@gmail.com")
set m.Subject="Test mail"do m.TextData.Write("Testing Mail's")set status=s.Send(m)if $$$ISERR(status) do $system.OBJ.DisplayError(status)quitRegards,Pandiyan