0

我正在尝试用heredocRuby 发送电子邮件,但我的整个代码似乎变成了字符串文字。我正在使用EclipseRuby 插件,但我无法弄清楚问题所在。这里的代码直接取自教程,所以我不明白为什么它不起作用。任何人都可以对此有所了解吗?

这是我的代码:

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

0

我知道这个问题有点老了,但我认为如果你在关闭“EOF”之前使用标签它应该可以工作。我认为,当您在“<<”之后添加“-”时,它会在结束词之前查找制表符,因此另一种方法可能是删除“-”。

我不太确定,我并没有真正使用 heredocs,因为它在字符串编码方面存在问题(如 á é í ...),但如果有人遇到这个问题,他们应该检查一下。

我希望这可以帮助别人。

于 2013-06-27T21:37:00.473 回答