Tag Archives: PHP

通过PHP发送邮件(带附件、HTML等)

用PHP发邮件,可以走sendmail,但是MIME方面,如果用内置的,非常麻烦。

我使用了SwiftMail

有兴趣的可以看看他们的文档,支持SMTP、Sendmail,对MIME的支持也很简单很强大,支持附件、html等。

一个例子:
<?php
require_once './lib/swift_required.php';

//E-Mail
$mail_title = "I'm Subject";
$mail_content = "I'm Conte[......]

继续阅读

让PHP可以使用sendmail发信

1、安装
sudo apt-get install sendmail
sudo /etc/init.d/sendmail
#检查启动
netstat -anp|grep sendmail
#根据需要可加入开机启动
2、php配置
#编辑php.ini
sudo vim /etc/sysconfig/php/php.ini
#添加如下行
sendmail_path =/usr/sbin/sendmail -i -t
3、解决启动慢的问题
据说如果更改过host,启动send[......]

继续阅读

PHP配置APC

APC是一个很好的PHP加速器,比起Xcache来说,速度略逊,但是省内存!

[shell]
#下载、编译
wget http://pecl.php.net/get/APC-3.1.4.tgz
tar -xzvf APC-3.1.4.tgz
cd APC-3.1.4
./configure --enable-apc --enable-apc-mmap --with-php-config=/usr/local/php/bin/php-config

#安装、设置
[/shel[......]

继续阅读