gpt4 book ai didi

python - 在 mailx 中将 s3 文件作为附件发送

转载 作者:太空宇宙 更新时间:2023-11-04 10:11:13 26 4
gpt4 key购买 nike

我正在尝试使用 mailx 发送一个 S3 文件作为附件,我有以下命令可以很好地在 unix 文件系统上发送一个普通文件,但是如何将它用于 s3 文件系统。

mailx -r ${from} -a ${file_path_attach} -s "${subject}" "${recipients}" << EOM

${message}
EOM

最佳答案

我可以按照下面的方式来做。

还要确保在您尝试运行 mailx 命令的集群上安装了电子邮件功能

#move the S3 file to local DIR on AWS
s3cmd get S3:attach.txt /tmp/attach.txt

#send the email with attachment
mailx -r test@test.com -a /tmp/attach.txt -s "TEST Subject" "test@test.com" << EOM

TEST body
EOM

关于python - 在 mailx 中将 s3 文件作为附件发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48978287/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com