在我的bash脚本中,我正在循环将附件文件设置为变量。使用变量我正在发送邮件。但是每个-a
和附件文件都被mailx
当作接收者。
attachString = "-a /home/user1/d/file.html -a /home/user1/d/file2.html"
echo -e "Hello ,\n\nworld." | mailx -v -r "from@test.com" -s "Mail Subject" -S smtp="10.10.10.10:25" -S ssl-verify=ignore "$attachString" to1@test.com,to2@test.com