method
mailfrom
mailfrom(from_addr)
public
Hide source
# File lib/net/smtp.rb, line 837 def mailfrom(from_addr) if $SAFE > 0 raise SecurityError, 'tainted from_addr' if from_addr.tainted? end getok("MAIL FROM:<#{from_addr}>") end