当前位置:  编程技术>php
本页文章导读:
    ▪phpmailer实现的简单openvpn用户认证的代码      完整代码如下: 代码如下: <?php /** *PHPMailer 示例 */ require_once('class.phpmailer.php'); require_once('class.pop3.php'); $username = getenv('username'); $password = getenv('password'); $pop = new POP3(); $auth = $pop->Au.........
    ▪PHPMailer 中文使用说明      A开头: $AltBody --属性 出自:PHPMailer : $AltBody 文件:class.phpmailer .php 说明:该属性的设置是在邮件正文不支持HTML的备用显示 AddAddress --方法 出自:PHPMailer ::AddAddress(),文件:class.phpmailer .php.........
    ▪使用ajax防止页面缓存的代码      使用ajax技术时,通常无刷新页面提交数据后,用同样的url去获取数据的时候会发现是以前的数据。 使用以下的方法可以取消缓存,感兴趣的朋友可以参考下。 htm网页   代码如下: <metahttp.........

[1]phpmailer实现的简单openvpn用户认证的代码
    来源: 互联网  发布时间: 2013-12-24
完整代码如下:
代码如下:
<?php
/**
*PHPMailer 示例
*/
require_once('class.phpmailer.php');
require_once('class.pop3.php');
$username = getenv('username');
$password = getenv('password');
$pop = new POP3();
$auth = $pop->Authorise('your.mailserver.com', 110, 30, "$username", "$password", 1);
if ($auth){
# echo OK;
exit(0);
} else {
# echo "FAIL";
exit(255);
}
?>

您可能感兴趣的文章:
PHPMailer发送邮件的实例分享
phpmailer发送gmail邮件的例子
phpmailer发送网易126邮箱的例子
phpmailer发送yahoo邮件的例子
phpmailer类实现邮件群发的实例代码
PHPMailer发送邮件代码实例(ubuntu系统)
PHPMailer发送带附件邮件的例子
PHPMailer收发邮件标题、发件人、内容乱码问题的终极解决方法
PHPmailer发送邮件及乱码问题的解决
PHPMailer发送邮件中文附件名乱码的解决办法
PHPMailer邮件标题中文乱码的解决方法
PHPMailer邮件类发送邮件举例(163邮箱)
phpmailer 发送邮件中文乱码问题的解决方法总结
phpmailer发送邮件及实现密码找回功能的代码
PHPmailer邮件群发的入门例子
PHPmailer 邮件群发的范例参考
phpmailer发邮件中文乱码问题如何解决
phpmailer 类发送邮件乱码解决方法
PHPMailer批量发送邮件的实例代码
有关phpmailer的用法
php使用phpMailer发送邮件的例子
PHPMailer 中文使用说明
phpmailer发送邮件的例子


    
[2]PHPMailer 中文使用说明
    来源: 互联网  发布时间: 2013-12-24

A开头:

$AltBody --属性
出自:PHPMailer : $AltBody
文件:class.phpmailer .php
说明:该属性的设置是在邮件正文不支持HTML的备用显示

AddAddress --方法
出自:PHPMailer ::AddAddress(),文件:class.phpmailer .php
说明:增加收件人。参数1为收件人邮箱,参数2为收件人称呼。例AddAddress("to@163.com","to name"),但参数2可选,AddAddress(to@163.com )也是可以的。
函数原型:public function AddAddress($address, $name = '') {}

AddAttachment --方法
出自:PHPMailer ::AddAttachment()
文件:class.phpmailer .php。
说明:增加附件。
参数:路径,名称,编码,类型。其中,路径为必选,其他为可选
函数原型:
AddAttachment($path, $name = '', $encoding = 'base64', $type = 'application/octet-stream'){}

AddBCC --方法
出自:PHPMailer ::AddBCC()
文件:class.phpmailer .php
说明:增加一个密送。抄送和密送的区别请看[SMTP发件中的密送和抄送的区别 ] 。
参数1为地址,参数2为名称。注意此方法只支持在win32下使用SMTP,不支持mail函数
函数原型:public function AddBCC($address, $name = ''){}

AddCC -- 方法
出自:PHPMailer ::AddCC()
文件:class.phpmailer .php
说明:增加一个抄送。抄送和密送的区别请看[SMTP发件中的密送和抄送的区别 ] 。
参数1为地址,参数2为名称注意此方法只支持在win32下使用SMTP,不支持mail函数
函数原型:public function AddCC($address, $name = '') {}

AddCustomHeader --方法
出自:PHPMailer ::AddCustomHeader()
文件:class.phpmailer .php
说明:增加一个自定义的E-mail头部。
参数为头部信息
函数原型:public function AddCustomHeader($custom_header){}

AddEmbeddedImage -- 方法
出自:PHPMailer ::AddEmbeddedImage()
文件:class.phpmailer .php
说明:增加一个嵌入式图片
参数:路径,返回句柄[,名称,编码,类型]
函数原型:public function AddEmbeddedImage($path, $cid, $name = '', $encoding = 'base64', $type = 'application/octet-stream') {}
提示:AddEmbeddedImage(PICTURE_PATH. "index_01.jpg ", "img_01 ", "index_01.jpg ");
在html中引用<img src= "cid:img_01 ">

AddReplyTo --方法
出自:PHPMailer :: AddReplyTo()
文件:class.phpmailer .php
说明:增加回复标签,如"Reply-to"
参数1地址,参数2名称
函数原型:public function AddReplyTo($address, $name = '') {}

AddStringAttachment -方法
出自:PHPMailer :: AddStringAttachment()
文件:class.phpmailer .php
说明:增加一个字符串或二进制附件(Adds a string or binary attachment (non-filesystem) to the list.?)
参数:字符串,文件名[,编码,类型]
函数原型:public function AddStringAttachment($string, $filename, $encoding = 'base64', $type = 'application/octet-stream') {}

Authenticate --方法
出自:SMTP::Authenticate()
文件:class.smtp.php
说明:开始SMTP认证,必须在Hello()之后调用,如果认证成功,返回true,
参数1用户名,参数2密码
函数原型:public function Authenticate($username, $password) {}

B开头

$Body --属性
出自:PHPMailer : $Body
文件: class.phpmailer .php
说明:邮件内容,HTML或Text格式

C开头

$CharSet --属性
出自:PHPMailer : $CharSet
文件:class.phpmailer .php
说明:邮件编码,默认为iso-8859-1

$ConfirmReadingTo --属性
出自:PHPMailer : $ConfirmReadingTo 文件class.phpmailer .php
说明:回执?

$ContentType --属性
出自:PHPMailer : $ContentType
文件: class.phpmailer .php
说明:文档的类型,默认为"text/plain"

$CRLF --属性
出自:PHPMailer : $ContentType
文件:class.phpmailer .php
说明:SMTP回复结束的分隔符(SMTP reply line ending?)

class.phpmailer .php --对象
出自:class.phpmailer .php
文件: class.phpmailer .php
说明:phpmailer 对象

class.smtp.php --对象
出自:class.smtp.php 文件: class.smtp.php
说明:SMTP功能的对象

ClearAddresses --方法
出自:PHPMailer ::ClearAddresses()
文件: class.phpmailer .php
说明:清除收件人,为下一次发件做准备。返回类型是void

ClearAllRecipients --方法
出自:PHPMailer ::ClearAllRecipients()
文件: class.phpmailer .php
说明:清除所有收件人,包括CC(抄送)和BCC(密送)

ClearAttachments --方法
出自:PHPMailer ::ClearAttachments()
文件: class.phpmailer .php
说明:清楚附件

ClearBCCs --方法
出自:PHPMailer ::ClearBCCs() 文件 class.phpmailer .php
说明:清楚BCC (密送)

ClearCustomHeaders --方法
出自:PHPMailer ::ClearCustomHeaders()
文件: class.phpmailer .php
说明:清楚自定义头部

ClearReplyTos --方法
出自:PHPMailer ::ClearReplyTos()
文件: class.phpmailer .php
说明:清楚回复人

Close --方法
出自:SMTP::Close()
文件: class.smtp.php
说明:关闭一个SMTP连接

Connect --方法
出自:SMTP::Connect()
文件: class.smtp.php
说明:建立一个SMTP连接Mailer.html

$ContentType --属性
出自:PHPMailer : $ContentType
文件: class.phpmailer .php
说明:文档的类型,默认为"text/plain"

D开头
$do_debug --属性
出自:SMTP: $do_debug
文件:class.smtp.php
说明:SMTP调试输出

Data -方法
出自:SMTP: $Data()
文件:class.smtp.php
说明:向服务器发送一个数据命令和消息信息(sendsthemsg_datatotheserver)

E开头

$Encoding --属性
出自:PHPMailer : $Encoding
文件:class.phpmailer .php
说明:设置邮件的编码方式,可选:"8bit","7bit","binary","base64",和"quoted-printable".


    
[3]使用ajax防止页面缓存的代码
    来源: 互联网  发布时间: 2013-12-24

使用ajax技术时,通常无刷新页面提交数据后,用同样的url去获取数据的时候会发现是以前的数据。
使用以下的方法可以取消缓存,感兴趣的朋友可以参考下。

htm网页
 

代码如下:
<metahttp-equiv="pragma"content="no-cache">
<metahttp-equiv="cache-control"content="no-cache,must-revalidate">
<metahttp-equiv="expires"content="wed,26feb199708:21:57gmt">
或<metahttp-equiv="expires"content="0">

asp网页
 

代码如下:
<%
response.expires=-1
response.expiresabsolute=now()-1
response.cachecontrol="no-cache"
%>

php网页
 

代码如下:
<?php
header("expires:mon,26jul199705:00:00gmt");
header("cache-control:no-cache,must-revalidate");
header("pragma:no-cache");
?>

jsp网页
 

代码如下:
response.addHeader("pragma", "no-cache");
response.addHeader("cache-control", "no-cache,must-revalidate");
response.addHeader("expires", "0");

    
最新技术文章:
▪PHP函数microtime()时间戳的定义与用法
▪PHP单一入口之apache配置内容
▪PHP数组排序方法总结(收藏)
▪php数组排序方法大全(脚本学堂整理奉献)
▪php数组排序的几个函数(附实例)
▪php二维数组排序(实例)
▪php根据键值对二维数组排序的小例子
▪php验证码(附截图)
▪php数组长度的获取方法(三个实例)
▪php获取数组长度的方法举例
▪判断php数组维度(php数组长度)的方法
▪php获取图片的exif信息的示例代码
▪PHP 数组key长度对性能的影响实例分析
▪php函数指定默认值的方法示例
▪php提交表单到当前页面、提交表单后页面重定...
▪php四舍五入的三种实现方法
▪php获得数组长度(元素个数)的方法
▪php日期函数的简单示例代码
▪php数学函数的简单示例代码
▪php字符串函数的简单示例代码
▪php文件下载代码(多浏览器兼容、支持中文文...
▪php实现文件下载、支持中文文件名的示例代码...
▪php文件下载(防止中文文件名乱码)的示例代码
▪解决PHP文件下载时中文文件名乱码的问题
▪php数组去重(一维、二维数组去重)的简单示例
▪php小数点后取两位的三种实现方法
▪php Redis 队列服务的简单示例
▪PHP导出excel时数字变为科学计数的解决方法
▪PHP数组根据值获取Key的简单示例
▪php数组去重的函数代码示例
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,