发送的电子邮件中,附件为空白
|
我已使用此脚本发送文本文件,但电子邮件带有附件,但是当我打开附件时,它为空白。知道为什么吗?我错过了什么吗?谢谢
#!/usr/bin/perl -wl
my $msg = MIME::Lite->new(
From => \'xxx.net\',
To => \'xxx.com\',
Subject => \'Report\',
Type => \'multipart/mixed\',
)or die \"Error creating multipart container: $!\\n\";
$msg->attach(
Type => \'TEXT\',
Data => \" Please check the attached file.\",
)or die \"Error adding the text message part: $!\\n\";
$msg->attach (
Type => \'text/plain\',
Path => \'/myfile/file1\',
Filename => \'result.txt\',
Disposition => \'attachment\'
)or die \"Error adding the attached file part: $!\\n\" ;
$msg->send;
没有找到相关结果
已邀请:
1 个回复
泉秘胁
是要附加的文件的完整路径,
是要接收的该文件的名称。 我想你想要这个: