<?php
/**
 * @author  Magediary
 * @package Magediary_ProductQuestion
 */

namespace Magediary\ProductQuestion\Model\Email;

/**
 * Send email on submit a new answer
 *
 * @api
 */
interface MailAnswerInterface
{
    /**
     * Send notification email to the customer
     *
     * @param mixed $data
     * @return void
     */
    public function sendCustomer($data);

    /**
     * Send email on submit a new answer
     *
     * @param mixed $data
     * @return void
     */
    public function sendAdmin($data);
}
