當前位置: 首頁>>代碼示例>>PHP>>正文


PHP mail::create_mail方法代碼示例

本文整理匯總了PHP中mail::create_mail方法的典型用法代碼示例。如果您正苦於以下問題:PHP mail::create_mail方法的具體用法?PHP mail::create_mail怎麽用?PHP mail::create_mail使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在mail的用法示例。


在下文中一共展示了mail::create_mail方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: elseif

     } elseif ($_GET['clanid'] != $auth['clanid'] and $auth['type'] < 2) {
         $func->information(t('Du bist nicht berechtigt das Passwort dieses Clans zu ändern'), "index.php?mod=home");
     } else {
         include_once 'inc/classes/class_masterform.php';
         $mf = new masterform();
         if ($auth['type'] < 2) {
             $mf->AddField(t('Dezeitiges Passwort'), 'old_password', IS_PASSWORD, '', FIELD_OPTIONAL, 'CheckClanPW');
         }
         $mf->AddField(t('Neues Passwort'), 'password', IS_NEW_PASSWORD);
         if ($mf->SendForm('index.php?mod=clanmgr&action=clanmgr&step=10', 'clan', 'clanid', $_GET['clanid'])) {
             include_once "modules/mail/class_mail.php";
             $mail = new mail();
             // Send information mail to all clan members
             $clanuser = $db->qry("SELECT userid, username, email FROM %prefix%user WHERE clanid=%int%", $_GET['clanid']);
             while ($data = $db->fetch_array($clanuser)) {
                 $mail->create_mail($auth['userid'], $data['userid'], t('Clanpasswort geändert'), t('Das Clanpasswort wurde durch den Benutzer %1 in "%2" geändert', array($auth['username'], $_POST['password_original'])));
                 $mail->create_inet_mail($data['username'], $data['email'], t('Clanpasswort geändert'), t('Das Clanpasswort wurde durch den Benutzer %1 in "%2" geändert', array($auth['username'], $_POST['password_original'])), $cfg["sys_party_mail"]);
             }
             $func->log_event(t('Das Clanpasswort wurde durch den Benutzer %1 geändert', $auth['username']), 1, t('clanmgr'));
         }
     }
     break;
     // Delete
 // Delete
 case 20:
     if ($auth['type'] >= 3) {
         if ($_GET['clanid']) {
             $_POST['action'][$_GET['clanid']] = 1;
         }
         if ($_POST['action']) {
             foreach ($_POST['action'] as $key => $val) {
開發者ID:eistr2n,項目名稱:lansuite,代碼行數:31,代碼來源:clanmgr.php


注:本文中的mail::create_mail方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。