12345678910111213141516171819202122232425 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Contact\Model;
- /**
- * Email from contact form
- *
- * @api
- * @since 100.2.0
- */
- interface MailInterface
- {
- /**
- * Send email from contact form
- *
- * @param string $replyTo Reply-to email address
- * @param array $variables Email template variables
- * @return void
- * @since 100.2.0
- */
- public function send($replyTo, array $variables);
- }
|