首页 > 开发 > PHP > 正文

PHP中用Socket发送电子邮件(3)

2024-05-04 23:02:14
字体:
来源:转载
供稿:网友

 

<?
1 include "sendmail.class.php3";
2 $email="hello, this is a test letter!";
3 $sendmail=new send_mail("smtp.263.net", "limodou", true); //
显示调示信息
4 if($sendmail->send("[email protected]", "[email protected]", "test", $email))
5 {
6 echo "
发送成功!<br>";
7 }
8 else
9 {
10 echo "
发送失败!<br>";
11 }
?>
--------------------------------------------------------------------------------
1行,装入send_mail类。
3行,创建一个类的实例,且设置显示调示信息,如果不想显示,可以
    $sendmail=new send_mail("smtp.263.net");
4行,发送邮件。


很简单,不是吗?下面再给合以前的发送mime邮件的例子,给出一个发送html附件的例子。

--------------------------------------------------------------------------------
<?php

include "mime.class.php3";
//
注,在发送mime邮件一文中,这个类文件名为mime.class,在此处我改成这样的

$to = '[email protected]'; //
改为收信人的邮箱
$str = "newsletter for ".date('m y', time());

//
信息被我改少了
$html_data = '<html><head><title>'. $str. '</title></head>
<body bgcolor="#ffffff">
hello! this is a test!
</body>
</html>';

//
生成mime类实例
$mime = new mime_mail("[email protected]", $to, $str);

//
添加html附件
$mime->attach($html_data, "", html, base64);

//
注释掉,采用我的发送邮件处理
//$mime->send_mail();

//
生成邮件
$mime->gen_email();

//
显示邮件信息
//echo $mime->email."<br>";

//
包含sendmail文件
include "sendmail.class.php3";

//
创建实例
$sendmail=new send_mail("smtp.263.net", "limodou", true);

//
发送邮件
$sendmail->send("[email protected]", "[email protected]", $str, $mime->email);

?>

国内最大的酷站演示中心!
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表