请使用以下代码在wordpress中发送电子邮件,这将更改发件人的名称。
$recipient_email = "mymail@mail.com";
$subject ="Submission";
$message = "I have done a submission";
$headers = \'Content-type: text/html;charset=utf-8\' . "\\r\\n";
$headers .= \'From: Mastic Technology Rebate <donotreply@plygem.com>\' . "\\r\\n";
wp_mail($recipient_email, $subject, $message, $headers);