我正在尝试使用Email::MIMEs
(1.926)walk_parts
和body_set
更改多部分MIME电子邮件中部分的正文文本。
更改已存在,但在发送邮件时,正在发送旧的/未更改的邮件文本。 问题是:如何“激活”我的更改?
请参阅:
use Email::MIME;
my $raw_message_text = q!Date: Wed, 26 Feb 2014 08:02:39 +0100
From: Me <me@example.com>
To: You <you@example.com>
Subject: test
MIME-Version: 1.0
Content-Type: multipart/mixed;
boundary="------------010309070301040606000908"
This is a multi-part message in MIME format.
--------------010309070301040606000908
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
this is a test
--------------010309070301040606000908
Content-Type: text/plain;
name="file-to-attach.txt"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
filename="file-to-attach.txt"
dGV4dCBpbnNpZGUgYXR0YWNobWVudAoK
--------------010309070301040606000908--
!;
my $parsed_email = Email::MIME->new($raw_message_text);
$parsed_email->walk_parts(sub {
my ($part) = @_;
return if $part->subparts; # multipart
return unless ($part->content_type =~ /text\/plain.*charset=utf-8/i);
$part->body_set("new body text");
});
print "As you see the change is there:\n";
$parsed_email->walk_parts(sub {
my ($part) = @_;
return if $part->subparts; # multipart
my $body = $part->body;
print "Body:$body\n";
});
print "But the email object itself doesn't notice that:\n\n";
print $parsed_email->as_string;
这将首先显示已更改的正文,因此您可以看到它在那里!但是当显示整个邮件时,会使用旧的正文。如果我只是使用Email::Sender
发送电子邮件,也会发生同样的情况。所以我想知道body_set
的正确用法是什么......
答案 0 :(得分:1)
我偶然发现了这个问题。最终我意识到原始海报中遗漏的所有东西都是如下:
my @new_parts = $parsed_email->parts;
$parsed_email->parts_set( \@new_parts );
在最后的as_string调用之前添加上面的内容,你很好。
答案 1 :(得分:0)
walk_parts
似乎没有正常工作我不得不使用旧的经典方法,我不确定是否有新版本的东西坏了但是这种方法有效,你只需要需要以某种方式替换你的代码:
这个解决方案根本不高效,我知道它在内存上很重,但我很懒,我想我应该找一个这个模型的库。
my @parts = $parsed->subparts;
my @new_parts;
if (@parts) {
foreach (@parts)
{
my $part = $_;
print $part->content_type."\r\n";
if ($part->content_type =~ /text\/plain.*charset=utf-8/i) {
$part->body_set("new body text");
push @new_parts, $part;
} else {
push @new_parts, $part;
}
}
} else {
print 'single part';#to replace for single mime
}
$parsed->parts_set(\@new_parts);