我按照下面的例子在 $email_template 中设置了电子邮件正文,然后想使用该功能发送带有附件的电子邮件,例如do_mail attachment.csv user@domain.com
。
$email_template="Subject: Listing - `date --date="tomorrow" +"%A %d %B %Y"`
From: no-reply@domain.com
To: $2
Content-Type: plain/text
Please see attached listing - `date --date="tomorrow" +"%A %d %B %Y"`
"
do_mail () {
uuencode $1 $1 |
printf "$email_template" "$2" |
/usr/sbin/sendmail -oi -t
}
由于没有发送电子邮件,这是否有一些错误?