Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ConfigInterface.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Contact\Model;
7 
14 interface ConfigInterface
15 {
19  const XML_PATH_EMAIL_RECIPIENT = 'contact/email/recipient_email';
20 
24  const XML_PATH_EMAIL_SENDER = 'contact/email/sender_email_identity';
25 
29  const XML_PATH_EMAIL_TEMPLATE = 'contact/email/email_template';
30 
34  const XML_PATH_ENABLED = 'contact/contact/enabled';
35 
42  public function isEnabled();
43 
50  public function emailTemplate();
51 
58  public function emailSender();
59 
66  public function emailRecipient();
67 }