芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluent-smtp/app/Models/Traits/SendTestEmailTrait.php
make('admin.email_html'); $subject .= ' - HTML Version'; } else { $headers[] = 'Content-Type: text/plain; charset=UTF-8'; $body = (string) fluentMail('view')->make('admin.email_text'); $subject .= ' - Text Version'; } if (!empty($data['from'])) { $headers[] = 'From: ' . $data['from']; } if(!defined('FLUENTMAIL_TEST_EMAIL')) { define('FLUENTMAIL_TEST_EMAIL', true); } return wp_mail($to, $subject, $body, $headers); } }