るりまサーチ

最速Rubyリファレンスマニュアル検索!
36件ヒット [1-36件を表示] (0.006秒)
トップページ > クラス:Net::SMTP[x] > クエリ:sendmail[x]

別のキーワード

  1. smtp sendmail
  2. net/smtp sendmail
  3. sendmail net/smtp
  4. sendmail net::smtp

ライブラリ

キーワード

検索結果

Net::SMTP#sendmail(mailsrc, from_addr, *to_addrs) -> () (15108.0)

メールを送信します。

...を文字列で渡します。

require 'net/smtp'

Net::SMTP
.start('smtp.example.com') {|smtp|
smtp.send_message mail_string,
'from@example.com',
'to1@example.net', 'to2@example.net'
}

sendmail
は obsolete です。

@param mailsrc メール...
...発生します
@raise Net::SMTPServerBusy SMTPエラーコード420,450の場合に発生します
@raise Net::SMTPSyntaxError SMTPエラーコード500の場合に発生します
@raise Net::SMTPFatalError SMTPエラーコード5xxの場合に発生します
@raise Net::SMTPUnknownError SMTPエラ...

Net::SMTP#send_mail(mailsrc, from_addr, *to_addrs) -> () (8.0)

メールを送信します。

...を文字列で渡します。

require 'net/smtp'

Net::SMTP
.start('smtp.example.com') {|smtp|
smtp.send_message mail_string,
'from@example.com',
'to1@example.net', 'to2@example.net'
}

sendmail
は obsolete です。

@param mailsrc メール...
...発生します
@raise Net::SMTPServerBusy SMTPエラーコード420,450の場合に発生します
@raise Net::SMTPSyntaxError SMTPエラーコード500の場合に発生します
@raise Net::SMTPFatalError SMTPエラーコード5xxの場合に発生します
@raise Net::SMTPUnknownError SMTPエラ...

Net::SMTP#send_message(mailsrc, from_addr, *to_addrs) -> () (8.0)

メールを送信します。

...を文字列で渡します。

require 'net/smtp'

Net::SMTP
.start('smtp.example.com') {|smtp|
smtp.send_message mail_string,
'from@example.com',
'to1@example.net', 'to2@example.net'
}

sendmail
は obsolete です。

@param mailsrc メール...
...発生します
@raise Net::SMTPServerBusy SMTPエラーコード420,450の場合に発生します
@raise Net::SMTPSyntaxError SMTPエラーコード500の場合に発生します
@raise Net::SMTPFatalError SMTPエラーコード5xxの場合に発生します
@raise Net::SMTPUnknownError SMTPエラ...