✏️ 正在编辑: Notifications.php
路径:
/srv/systems_dir/contemax/library/Core/Mail/Notifications.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Core_Mail_Notifications extends Yuppie_Mail_Notifications { public function isBounced($from, $to) { $dir = "http://sistemayuppie.com.br/sns-handle/bounces/"; $logPath = "$dir{$this->getLogName($from)}"; $emails = @file_get_contents($logPath); if( !empty($emails) ){ return strpos($emails, $to) !== FALSE; } return false; } public function isComplained($from, $to) { $dir = "http://sistemayuppie.com.br/sns-handle/complaints/"; $logPath = "$dir{$this->getLogName($from)}"; $emails = @file_get_contents($logPath); if( !empty($emails) ){ return strpos($emails, $to) !== FALSE; } return false; } }
💾 保存文件
← 返回文件管理器