method
do_helo
do_helo(helo_domain)
private
Hide source
# File lib/net/smtp.rb, line 600 def do_helo(helo_domain) res = @esmtp ? ehlo(helo_domain) : helo(helo_domain) @capabilities = res.capabilities rescue SMTPError if @esmtp @esmtp = false @error_occured = false retry end raise end