-1

このスクリプトを使用して、コメントの後に電子メールを送信します。これは joomlaのk2 コンポーネントですが、毎回 2 つの電子メールを受け取ります。実行をカウントして、このスクリプトを 1 回だけ開始するにはどうすればよいですか?

私のコードはそう見えます:

        $mailer =& JFactory::getMailer();
    $config =& JFactory::getConfig();
    $sender = array(
    $config->getValue( 'config.mailfrom' ),
    $config->getValue( 'config.fromname' ) );
    $mailer->setSender($sender);
    $recipient = explode(",", " marco3pollini@gmail.com");
    $mailer->addRecipient($recipient);
    $mailer->setSubject(JText::_('New comment is arrived'));
    if (!trim($commentURL)=="") {
    $commentURL = "Site: ". $commentURL. "\n";
    }
    $body = "Name: ". $userName. "\n". "E-mail: ". $commentEmail. "\n". $commentURL. "Comment: ". $commentText;
    $mailer->setBody($body);
    $mailer->isHTML(true);
    $mailer->Send();            
4

1 に答える 1

0
$first = true;
if($first) {

   ...code...

   $first = false;
 }

しかし、コンポーネント開発者の問題がどこにあるのかをよりよく理解できると思います。

于 2013-09-02T14:31:56.843 に答える