mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-08 19:42:15 +09:00
Fix no Reply-To header when using Woorimail paid service
This commit is contained in:
parent
1f605dd396
commit
227e1c53d1
1 changed files with 7 additions and 0 deletions
|
|
@ -128,6 +128,13 @@ class Woorimail extends Base implements \Rhymix\Framework\Drivers\MailInterface
|
||||||
{
|
{
|
||||||
$data['wms_nick'] = $sender_email[0];
|
$data['wms_nick'] = $sender_email[0];
|
||||||
$data['wms_domain'] = $sender_email[1];
|
$data['wms_domain'] = $sender_email[1];
|
||||||
|
if($replyTo = $message->message->getReplyTo())
|
||||||
|
{
|
||||||
|
if ($replyTo = key($replyTo))
|
||||||
|
{
|
||||||
|
$data['sender_email'] = $replyTo;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue