method
rcptto
v2_5_5 -
Show latest stable
- Class:
Net::SMTP
rcptto(to_addr)public
No documentation available.
# File lib/net/smtp.rb, line 861
def rcptto(to_addr)
if $SAFE > 0
raise SecurityError, 'tainted to_addr' if to_addr.tainted?
end
getok("RCPT TO:<#{to_addr}>")
end