るりまサーチ

最速Rubyリファレンスマニュアル検索!
36件ヒット [1-36件を表示] (0.090秒)

別のキーワード

  1. udpsocket send
  2. socket send
  3. socket msg_send
  4. object send
  5. _builtin send

ライブラリ

クラス

キーワード

検索結果

Net::SMTP#send_message(mailsrc, from_addr, *to_addrs) -> () (21208.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 メールの内容
@param from_addr...

Net::SMTP#send_mail(mailsrc, from_addr, *to_addrs) -> () (6108.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 メールの内容
@param from_addr...

Net::SMTP#sendmail(mailsrc, from_addr, *to_addrs) -> () (6108.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 メールの内容
@param from_addr...