PHP
·
发表于 5年以前
·
阅读量:8254
#!/bin/bash
# 设置收件人邮箱
to="recipient@example.com"
# 设置发件人邮箱
from="sender@example.com"
# 设置邮件主题
subject="Test Email"
# 设置邮件内容
body="This is a test email."
# 发送邮件
echo "${body}" | mail -s "${subject}" -r "${from}" "${to}"