method
rcptto
rcptto(to_addr)
public
Hide source
# 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