このスクリプトを使用して、コメントの後に電子メールを送信します。これは 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();