Name : '.$customer->getName().'
Email : '.$customer->getEmail().'
Telephone : '.$this->getRequest()->getPost('telephone').''; $mail = Mage::getModel('core/email'); $mail->setToName($from_name); $mail->setToEmail($email_for_admin); $mail->setBody($adminContent); $mail->setSubject($email_subject_for_admin); $mail->setFromEmail($email_for_admin); $mail->setFromName($from_name); $mail->setType('html');// YOu can use Html or text as Mail format try { $mail->send(); } catch (Exception $e) { Mage::getSingleton('core/session')->addError('Unable to send.'); }