PHP 通过电子邮件将文章发送给朋友

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 通过电子邮件将文章发送给朋友相关的知识,希望对你有一定的参考价值。

Just paste the function below into your functions.php file.

function direct_email($text="Send by email"){
  global $post;
  $title = htmlspecialchars($post->post_title);
  $subject = 'Sur '.htmlspecialchars(get_bloginfo('name')).' : '.$title;
  $body = 'I recommend this page : '.$title.'. You can read it on : '.get_permalink($post->ID);
  $link = '<a rel="nofollow" href="mailto:?subject='.rawurlencode($subject).'&body='.rawurlencode($body).'" title="'.$text.' : '.$title.'">'.$text.'</a>';
  return $link;
}

以上是关于PHP 通过电子邮件将文章发送给朋友的主要内容,如果未能解决你的问题,请参考以下文章