0

heredocRubyでメール送信に使おうとしているのですが、コード全体が文字列リテラルになってしまうようです。Ruby プラグインを使用Eclipseしていますが、何が問題なのかわかりません。ここのコードはチュートリアルから直接取得したものなので、なぜ機能しないのかわかりません。誰でもこれに光を当てることができますか?

これが私のコードです:

require 'net/smtp'

filename = "/tmp/test.txt"
# Read a file and encode it into base64 format
filecontent = File.read(filename)
encodedcontent = [filecontent].pack("m")   # base64

marker = "AUNIQUEMARKER"

body = <<-EOF
This is a test email to send an attachement.
EOF

# Define the main headers.
part1 = <<-EOF
From: Private Person <me@fromdomain.net>
To: A Test User <test@todmain.com>
Subject: Sending Attachement
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary=#{marker}
--#{marker}
EOF

# Define the message action
part2 = <<-EOF
Content-Type: text/plain
Content-Transfer-Encoding:8bit

#{body}
--#{marker}
EOF

# Define the attachment section
part3 = <<-EOF
Content-Type: multipart/mixed; name=\"#{filename}\"
Content-Transfer-Encoding:base64
Content-Disposition: attachment; filename="#{filename}"

#{encodedcontent}
--#{marker}--
EOF

mailtext = part1 + part2 + part3

# Let's put our code in safe area
begin 
  Net::SMTP.start('localhost') do |smtp|
     smtp.sendmail(mailtext, 'me@fromdomain.net',
                          ['test@todmain.com'])
  end
rescue Exception => e  
  print "Exception occured: " + e  
end  

これは、次のようになりEclipseます。

ここに画像の説明を入力

4

1 に答える 1