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


PHP email::save_send_format方法代码示例

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


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

示例1: unset

                $tmp_array[$j]->tmp_file = $_SESSION['attach_array'][$i]->tmp_file;
                $tmp_array[$j]->file_size = $_SESSION['attach_array'][$i]->file_size;
                $tmp_array[$j]->file_mime = $_SESSION['attach_array'][$i]->file_mime;
                $tmp_array[$j]->content_id = $_SESSION['attach_array'][$i]->content_id;
                $tmp_array[$j]->disposition = $_SESSION['attach_array'][$i]->disposition;
                $j++;
            }
        }
        // Removing the attachments array from the current session
        unset($_SESSION['num_attach']);
        unset($_SESSION['attach_array']);
        $_SESSION['attach_array'] = $tmp_array;
        $_SESSION['num_attach'] = $j > 1 ? $j - 1 : 0;
        break;
    case 'change_format':
        $email->save_send_format($GO_SECURITY->user_id, $content_type);
        break;
}
//check for the templates plugin
//if a template id is given then process it
$template_id = isset($_REQUEST['template_id']) ? $_REQUEST['template_id'] : 0;
$contact_id = isset($_REQUEST['contact_id']) ? $_REQUEST['contact_id'] : 0;
if ($mailing_group_id > 0 && $tp->get_contacts_from_mailing_group($mailing_group_id) == 0 && $tp->get_companies_from_mailing_group($mailing_group_id) == 0) {
    require $GO_THEME->theme_path . "header.inc";
    $tabtable = new tabtable('templates_tab', $ml_attention, '600', '120');
    $tabtable->print_head();
    echo '<p>' . $ml_no_contacts_in_mailing_group . '</p><br />';
    $button = new button($cmdClose, "javascript:window.close();");
    $tabtable->print_foot();
    require $GO_THEME->theme_path . "footer.inc";
    exit;
开发者ID:BackupTheBerlios,项目名称:hpt-obm-svn,代码行数:31,代码来源:send.php


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