Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Mail/Template/
Upload File :
Current File : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Mail/Template/SenderResolverInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Framework\Mail\Template;

/**
 * Mail Sender Resolver interface
 *
 * @api
 * @since 100.0.2
 */
interface SenderResolverInterface
{
    /**
     * Resolve sender information. The $sender can be a string to identify which sender to lookup in the config and
     * return the name and email for. The $sender can be an array prefilled with the name and email key/value pairs.
     *
     * @throws \Magento\Framework\Exception\MailException
     * @param string|array $sender
     * @param int|null $scopeId
     * @return array an array with 'name' and 'email' key/value pairs
     */
    public function resolve($sender, $scopeId = null);
}