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

namespace Magediary\ProductQuestion\Model\Email;

/**
 * Send email to customer and admin on report abuse
 *
 * @api
 */
interface MailAbuseInterface
{
    /**
     * Send email to customer and admin on report abuse
     *
     * @param mixed $data
     * @return void
     */
    public function send($data);
}
