疯狂Erlangyueming.blog.chinaunix.net
yueming
全部博文(921)
mnesia(1)
Flex框架(0)
mxml(0)
AS3(0)
MongoDB(1)
NOSQL(4)
关系型(Mysql)(0)
redis(49)
gevent(2)
Django(7)
Twisted(94)
wxpython(0)
Magento文档翻译(0)
C/C++(4)
AMP(9)
平面&三维设计(0)
网页三剑客&&html(0)
asp&&sqlserver(0)
2020年(1)
2019年(3)
2018年(3)
2017年(6)
2016年(47)
2015年(72)
2014年(25)
2013年(72)
2012年(125)
2011年(182)
2010年(42)
2009年(14)
2008年(85)
2007年(89)
2006年(155)
无色T恤
13790913
wanglian
swsw23
无赖皮肤
zhuqing_
qq203586
hk_sean
jiannma
saberwen
nowhere
__s1ng我
kubernet
wuhanyan
weiyunyi
refreshR
格伯纳
yuankk8
分类:
2008-08-12 13:02:45
<?php/*** mailer* 用来发送email,what the client what is so complex!* * related table:lr_mailsubscriber*/class mailer extends Controller { function mailer(){ parent::Controller(); //$this->load->scaffolding("lr_users") ; } function index(){ //$this->load->view('welcome_message'); header("Location:/index.php"); } public function doGroupSending($subject , $content){ if (empty($subject) || empty($content)){ echo "群发email的主题或者内容为空"; exit(0) ; } require_once("./WEB-INF/3partylibs/phpmailer/class.phpmailer.php") ; $mail = new PHPMailer(); $mail->From = "golifecn@golife.cn"; $success = true ; /*loop address*/ $model = &AdminModelFactory::Factory("MailsubscriberModel") ; $subscribers = $model->getAll() ; foreach ($subscribers as $v){ $mail->ClearAddresses() ; $mail->AddAddress($v['email']); $mail->Subject = $subject; $mail->Body = $content; $mail->IsHTML(true); if (!$mail->Send()){ $success = false ; $error .= $v['email'] ; } } /*~end loop address*/ if ($success){ echo "群发email给所有用户成功" ; } else { echo "群发失败" ; echo "一下用户没有成功发送:$error" ; } }}?>
上一篇:mysql错误:……is marked as crashed and should be repai
下一篇:js判断radio是否被选中
登录 注册