/ Published in: PHP
URL: http://www.magentocommerce.com/boards/viewthread/48670/
/app/code/core/Mage/Newsletter/Model/Subscriber.php $this->sendConfirmationSuccessEmail();
Expand |
Embed | Plain Text
public function confirm($code) { if($this->getCode()==$code) { $this->setStatus(self::STATUS_SUBSCRIBED) ->setIsStatusChanged(true) ->save(); $this->sendConfirmationSuccessEmail(); return true; } return false; }
You need to login to post a comment.
