NewAction.php 523 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Email\Controller\Adminhtml\Email\Template;
  8. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. class NewAction extends \Magento\Email\Controller\Adminhtml\Email\Template implements HttpGetActionInterface
  10. {
  11. /**
  12. * New transactional email action
  13. *
  14. * @return void
  15. */
  16. public function execute()
  17. {
  18. $this->_forward('edit');
  19. }
  20. }