当前位置: 首页>>代码示例>>PHP>>正文


PHP mailer::sendMail方法代码示例

本文整理汇总了PHP中mailer::sendMail方法的典型用法代码示例。如果您正苦于以下问题:PHP mailer::sendMail方法的具体用法?PHP mailer::sendMail怎么用?PHP mailer::sendMail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在mailer的用法示例。


在下文中一共展示了mailer::sendMail方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: sendAlert

 /**
  * 
  * @access public
  * @param id
  * 
  */
 public function sendAlert($id)
 {
     $mail = new mailer();
     $user = new users();
     // send alert email !
     $row = $user->getUser($id);
     $emailTo = $row['user'];
     $to[] = $emailTo;
     $subject = "Alert: Hours spent have exceeded planned hours";
     $mail->setSubject($subject);
     $text = "Hello " . $emailTo . ",\n\t\t\t\t\t\t\t\t\n\t\t\tThis is a friendly reminder that you have surpassed\n\t\t\t\t\t\t\t\t\n\t\t\tthe estimated hours for this project. While we \n\t\t\t\t\t\t\t\t\t\n\t\t\tunderstand it is impossible to meet every deadline\n\t\t\t\t\t\t\t\t\t\n\t\t\twe encourage you to be as diligent as possible with\n\t\t\t\t\t\t\t\t\t\n\t\t\tyour workload.";
     $mail->setText($text);
     $mail->sendMail($to);
 }
开发者ID:kellan04,项目名称:leantime,代码行数:20,代码来源:class.tickets.php

示例2: setHeaders

        header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error', true, 500);
        print_r($this);
        die('There was an error in processing your request. Please contact us at XXX-XXX-XXXX for further assistance.');
    }
    protected function setHeaders()
    {
        $headers[] = "Content-type: text/plain; charset=iso-8859-1";
        $headers[] = "From: webmaster@example.com";
        $headers[] = "Reply-To: webmaster@example.com";
        $headers[] = "Subject: {$this->subject}";
        $headers[] = "X-Mailer: PHP/" . phpversion();
        $this->headers = implode('\\r\\n', $headers);
    }
    protected function setSubject()
    {
        $this->subject = $this->name . ' is interested in purchasing property!';
    }
    protected function setMessage()
    {
        $this->message = $this->name . ' heard about us recently from (' . $this->option . ')
                                        and would like to look into our services to purchase
                                        a home! They have a budget of $' . $this->budget . ' 
                                        and can be contacted at the following:
                                        ' . $this->address1 . ' 
                                        ' . $this->address2 . ' 
                                        ' . $this->city . ', ' . $this->state . ' ' . $this->zip;
    }
}
$mailer = new mailer();
$mailer->sendMail();
开发者ID:singe-nu-fou,项目名称:pet-project,代码行数:30,代码来源:tech3-2.php


注:本文中的mailer::sendMail方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。