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


PHP Members::sendMail方法代码示例

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


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

示例1: selectAppointment

 function selectAppointment()
 {
     if (!empty($_GET['type']) && !empty($_GET['of'])) {
         $type = $_GET['type'];
         $of = $_GET['of'];
         $do = $type === "confirm" ? 'confirmed' : 'canceled';
         $query = " SELECT `id`,`current_user` FROM `appointment` WHERE `id` =  '" . $of . "' AND `doctor`= '" . $this->getFirstName() . " " . $this->getLastName() . "'";
         $result = $this->getDB()->query($query);
         $this->fetchData($this->getSessionUser());
         if ($result->num_rows >= 0) {
             $row = $result->fetch_assoc();
             $user = $row['current_user'];
             $tempmem = new Members();
             $tempmem->setDB($this->getDB());
             $tempmem->fetchData($user);
             echo $user;
             echo $tempmem->getEmail();
             if ($type === 'confirm') {
                 $query = "UPDATE `appointment` SET `is_approved` = '1' WHERE `id` ='" . $of . "' AND `doctor`='" . $this->getFirstName() . " " . $this->getLastName() . "'";
                 Members::sendMail($tempmem->getEmail(), "Your appointment has been approvedd");
             } else {
                 $query = "UPDATE `appointment` SET `is_approved` = '0' WHERE `id` ='" . $of . "' AND `doctor`='" . $this->getFirstName() . " " . $this->getLastName() . "'";
                 Members::sendMail($tempmem->getEmail(), "Your appointment has been canceled");
             }
             $result = $this->getDB()->query($query);
             if ($this->getDB()->affected_rows > 0) {
                 $msg = "Appointment has been " . $do;
                 self::setMessage($msg);
             } else {
                 $msg = "You are not allowed to " . $do . " this appointmnet";
                 self::setMessage($msg);
             }
         } else {
             $msg = "You are not allowed to " . $do . " this appointmnet";
             self::setMessage($msg);
         }
     }
 }
开发者ID:samundrak,项目名称:Practise,代码行数:38,代码来源:Doctor.php

示例2: foreach

    foreach ($data as $var => $value) {
        if (empty($value)) {
            echo $var . " is empty!";
            $pass = false;
            break;
        }
    }
    if ($pass) {
        $dbo = new DBConnection();
        $db = $dbo->connect();
        $appointment = new Appointment();
        $appointment->setDB($db);
        $appointment->setPatientUser($data['name']);
        $appointment->setDoctor($data['doctor']);
        $appointment->setDate($data['date']);
        $appointment->setTime($data['time']);
        $appointment->setSpeciality($data['speciality']);
        $appointment->setAppointmentType($data['appointment']);
        $appointment->setHospital($data['hospital']);
        $appointment->setMobile($data['phone']);
        $appointment->setAge($data['age']);
        $appointment->setGender($data['gender']);
        $appointment->setCurrentUser($members->getSessionUser());
        $appointment->setCurrentAddress($data['address']);
        if ($appointment->verification()) {
            $appointment->insert();
            Members::sendMail($members->getEmail(), "You have booked an appointment , You will be inform soon after Approved by doctor. ThankYou");
            echo Appointment::getMessage();
        }
    }
}
开发者ID:samundrak,项目名称:Practise,代码行数:31,代码来源:AppointmentCtrl.php


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