天天看點

php請求頁面将傳回的頁面發送email

<?php
require_once 'CLI_config.php';
require_once dirname(__FILE__).'/../../../../common/framework_config.php';
require_once dirname(__FILE__).'/../../../../common/SiteSettings.php';

$domain            = stripos($_SERVER['SERVER_NAME'],'dev') >= 0 ? 'http://dev-mcc.planetart.com' : SiteSettings::getDomain(SITE_MCC);
$htmlOverview    = file_get_contents($domain.'/planetart_dashboard.php?overview_from_email_tablename=overview'); //請求頁面傳回html
$htmlOP            = file_get_contents($domain.'/planetart_dashboard.php?overview_from_email_tablename=op');
                   
$startStr        = '<div id="tabs"';
$endStr            = '</div>';               
$startDivIndex    = stripos($htmlOP, $startStr); //查找"<div id="tabs""開始位置
$endDivIndex    = strripos($htmlOP, $endStr);  //查找"</div>"開始位置
$htmlOP            = substr($htmlOP, $startDivIndex, $endDivIndex + strlen($endStr) - $startDivIndex); //截取整個div

//OP is the first , overview is the second
$html            = stristr($htmlOverview, $startStr, TRUE) . $htmlOP . '<h4><h4>' .  stristr($htmlOverview, $startStr);
$html            = str_ireplace('<div id="tabs"', '<div class="tabs"', $html);
$html            = str_ireplace('$("#tabs").tabs();', '$(".tabs").tabs();', $html);
$html            = str_ireplace('$("#tabs").tabs(\'select\', 0);',
                               '$(\'.tabs:eq(0)\').tabs(\'select\',5);
                               $(\'.tabs:eq(1)\').tabs(\'select\',0);
                               $(\'.tabs:eq(1)>div[id!="tab1"]\').hide();
                               $(\'.tabs:eq(0)>ul>li:lt(5)\').hide();
                               $(\'.tabs:eq(1)>ul>li:gt(0)\').hide(); 
                               $(\'span[id*="refresh"]\').parent().remove();
                               $(\'form[id="form_overview"]:eq(0)>br:eq(0)\').remove();',
                               $html);
$html            = str_ireplace('$("tr[name=\'department\'] span:contains(\'Order Processing\')").parent().find(\'a:gt(0)\').click();',
                               '$(\'.data_table:eq(0) tr[name="department"]:eq(0) a:eq(2)\').click();
                               $(\'.data_table:eq(1) tr[name="department"]:eq(0) a:eq(0)\').click();
                               ', 
                               $html);
$html            = str_ireplace('planetart_dashboard_listorders.php', 'http://www.mycustomcase.com/planetart_dashboard_listorders.php', $html);

//for debug use query string '?debug=t'
if('t' == getIfSet($_GET, 'debug', '')){
    echo $html;
    exit;
}else{
    $mail         = new MailService();
    $from_name         = 'dashboard';
    $from            = SiteSettings::$NOREPLY_EMAIL[0];
    $to                = array('[email protected]','[email protected]','[email protected]');
    $subject        = 'dashboard email';
    $text            = '';
    $site_id        = 0;
    $ret_email = $mail->sendMail($from_name, $from, $to, $subject,stripslashes($text), $site_id, array(), true, '', array());
}
?>      

作者:

Tyler Ning

出處:

http://www.cnblogs.com/tylerdonet/

本文版權歸作者和部落格園共有,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文連接配接,如有問題,可以通過以下郵箱位址

[email protected]

 聯系我,非常感謝。

上一篇: http協定