需要用 php 运行下面的代码
sendmail -t >/dev/null 2>&1 <<EOF
to:[email protected]
from:[email protected]
subject:我是测试
我是测试
EOF
1
RIcter 2016-07-30 11:36:16 +08:00
能
|
2
phperstar 2016-07-30 11:36:22 +08:00
弄个 sh 脚本吧,然后用 php exec 函数执行这个脚本吧
|
4
skydiver 2016-07-30 11:52:24 +08:00
|
5
phperstar 2016-07-30 11:54:10 +08:00
@c7898585 http://php.net/manual/zh/book.exec.php 放着这么好的手册不看,太浪费呀。。。
|
6
UnisandK 2016-07-30 11:55:21 +08:00
用 mailgun 多好
|
8
90safe 2016-07-30 12:18:52 +08:00
shell_exec("sendmail -t >/dev/null 2>&1 <<EOF")
exec("sendmail -t >/dev/null 2>&1 <<EOF") 一般网站禁用 exec 函数,推荐前者。 |
9
90safe 2016-07-30 12:20:57 +08:00
http://www.jb51.net/article/28241.htm
四个执行命令的函数,不谢 |
10
Tink 2016-07-30 12:26:59 +08:00
exec
|
11
sneezry 2016-07-30 12:31:54 +08:00
用 mailgun 吧,每月 10000 封免费,自己的 mail server 多数会进垃圾箱
|
13
KomeijiSatori 2016-07-31 08:47:02 +08:00
system();
|