我正在开发一个网络应用程序,我需要向那些注册为新用户的人发送短信和邮件,并通过相同的方式发送有关更新的信息
答案 0 :(得分:1)
您可以使用php发送邮件以使用邮件功能以下是邮件的例子:
<?php
$to = "somebody@example.com, somebodyelse@example.com";
$subject = "HTML email";
$message = "
<html>
<head>
<title>HTML email</title>
</head>
<body>
<p>This email contains HTML Tags!</p>
</body>
</html>
";
// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
// More headers
$headers .= 'From: <webmaster@example.com>' . "\r\n";
$headers .= 'Cc: myboss@example.com' . "\r\n";
mail($to,$subject,$message,$headers);
?>
发送短信需要购买短信网关。
答案 1 :(得分:0)
发送短信你需要一个走道
使用php发送电子邮件使用函数mail()
http://www.php.net/manual/pt_BR/function.mail.php您可以找到所有文档