Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
 | message sender recipients |
  message := 'From: Me <myemail@gmail.com>
  To: You <otheremail@gmail.com>
   Subject: Simple Mail from pharo

    This is a test mail'.
  sender := 'myemail@gmail.com'.
  recipients := #('your@gmail.com').
SMTPClient
deliverMailFrom: sender
to: recipients
text: message
usingServer: 'smtp.gmail.com'

This code gives me a Telnetprotocol error.

I tired ZdcSecureSMTPClient class it works fine.

So My question here is can i send email without using password as ZdcSecureSMTPClient uses password

share|improve this question

1 Answer

You can't send through google's servers without logging in. Actually, I don't think you can send in plain-text, just over SSL.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.