コード例 #1
0
 public function indexAction()
 {
     $frmContact = new Contact_Form_Contact();
     if ($this->_request->isPost() && $frmContact->isValid($_POST)) {
         // get the posted data
         $sender = $frmContact->getValue('name');
         $email = $frmContact->getValue('email');
         $subject = $frmContact->getValue('subject');
         $message = $frmContact->getValue('message');
         // load the template
         $htmlMessage = $this->view->partial('templates/default.phtml', $frmContact->getValues());
         $mail = new Zend_Mail();
         // configure and create the SMTP connection
         $config = array('auth' => 'login', 'username' => 'myusername', 'password' => 'password');
         $transport = new Zend_Mail_Transport_Smtp('mail.server.com', $config);
         // set the subject
         $mail->setSubject($subject);
         // set the message's from address to the person who submitted the form
         $mail->setFrom($email, $sender);
         // for the sake of this example you can hardcode the recipient
         $mail->addTo('*****@*****.**', 'webmaster');
         // add the file attachment
         $fileControl = $frmContact->getElement('attachment');
         if ($fileControl->isUploaded()) {
             $attachmentName = $fileControl->getFileName();
             $fileStream = file_get_contents($attachmentName);
             // create the attachment
             $attachment = $mail->createAttachment($fileStream);
             $attachment->filename = basename($attachmentName);
         }
         // it is important to provide a text only version in addition to the html message
         $mail->setBodyHtml($htmlMessage);
         $mail->setBodyText($message);
         //send the message, now using SMTP transport
         $result = $mail->send($transport);
         // inform the view with the status
         $this->view->messageProcessed = true;
         if ($result) {
             $this->view->sendError = false;
         } else {
             $this->view->sendError = true;
         }
     }
     $frmContact->setAction('/contact');
     $frmContact->setMethod('post');
     $this->view->form = $frmContact;
 }
コード例 #2
0
 /**
  * View action for contact controller
  * @throws Exception
  */
 public function viewAction()
 {
     // action body
     try {
         $translate = Zend_Registry::get('Zend_Translate');
         $mdlContact = new Contact_Model_Contact();
         $frmContact = new Contact_Form_Contact(array('type' => 'public'));
         $params = $this->getRequest()->getParams();
         $contact = $mdlContact->find((int) $params['contact'])->current();
         if (!$contact) {
             throw new Exception($translate->translate("CONTACT_ROW_NOT_FOUND"));
         }
         if ($this->getRequest()->isPost()) {
             if ($frmContact->isValid($_POST)) {
                 $mdlAccount = new Acl_Model_Account();
                 $account = $mdlAccount->find((int) $contact->account_id)->current();
                 $emailTo = strlen($contact->email_to) > 1 ? $contact->email_to : $account->email;
                 $mail = new Zend_Mail();
                 $mail->setBodyText($frmContact->getElement('message')->getValue())->setFrom($frmContact->getElement('email')->getValue(), $frmContact->getElement('fullname')->getValue())->addTo($emailTo, $account->first_name . ' ' . $account->last_name)->setSubject($translate->translate('CONTACT_DEFAULT_SUBJECT'))->send();
                 $frmContact->reset();
             }
         } else {
             $fields = array();
             foreach ($frmContact->getElements() as $element) {
                 $fields[] = $element->getName();
             }
             $frmContact->addDisplayGroup($fields, 'form', array('legend' => "CONTACT"));
         }
         $frmContact->setAction($this->_request->getBaseUrl() . "/contact/contact/view");
         $this->view->frmContact = $frmContact;
     } catch (Exception $e) {
         #$this->_helper->flashMessenger->addMessage( array('type'=>'error', 'header'=>'', 'message' => $e->getMessage() ) );
         #$this->_helper->redirector( "index", "contact", "contact" );
         echo $e->getMessage();
     }
     return;
 }