यह मेरी ब्लॉक फाइल है:
<?php
namespace ChennaiBox\Mymail\Block\Mail;
class MailContent extends \Magento\Framework\View\Element\Template
{
protected $_objectManager;
protected $customerSession;
public function __construct(
\Magento\Customer\Model\Session $customerSession,
\Magento\Framework\ObjectManagerInterface $objectManager
) {
$this->customerSession = $customerSession;
$this->_objectManager = $objectManager;
}
public function mymailData()
{
try{
if ($this->customerSession->isLoggedIn()) {
$cutomerEmail =(string)$this->customerSession->getCustomer()->getEmail();
echo $cutomerEmail;
else{
$this->_redirect('customer/account/login/');
}
}catch (Exception $e) {
$e->getMessage();
}
}
}
अगर मैं इस ब्लॉक को कॉल करता हूं तो मुझे त्रुटि मिलती है
PHP घातक त्रुटि: एक सदस्य फ़ंक्शन को कॉल करें () / null पर invar / www/html/magento2/vendor/magento/framework/View/Element/AbstractBlock.php पर लाइन 642 पर देखें, संदर्भदाता : http: //magentodev.gworks .mobi / magento2 / ग्राहक / खाता / सूचकांक /
अपाचे error.log
फ़ाइल से।, क्यों, मुझे इस समस्या को हल करने का तरीका बताएं।