wordpress 发送电子邮件

来源:互联网 发布:mysql中的存储过程 编辑:程序博客网 时间:2024/06/05 06:36

wp_mail()基本上是一个超级简单的函数,允许你通过一些简单的代码轻松地向任何人发送电子邮件。

<?php$to = 'user@example.com';$subject = 'Hello from my blog!';$message = 'Check it out -- my blog is emailing you!'$mail = wp_mail($to, $subject, $message);if($mail) echo 'Your message has been sent!';else echo 'There was a problem sending your message. Please try again.';?>


0 0
原创粉丝点击