
// 起業家タイプ診断 自動返信メール
add_action('wp_ajax_shindan_mail', 'shindan_send_mail');
add_action('wp_ajax_nopriv_shindan_mail', 'shindan_send_mail');

function shindan_send_mail() {
    $name  = sanitize_text_field($_POST['name']);
    $email = sanitize_email($_POST['email']);
    $type  = sanitize_text_field($_POST['type']);
    $sub   = sanitize_text_field($_POST['sub']);
    $desc  = sanitize_textarea_field($_POST['desc']);
    $strengths = sanitize_textarea_field($_POST['strengths']);
    $advice    = sanitize_textarea_field($_POST['advice']);
    $caution   = sanitize_textarea_field($_POST['caution']);

    if (!$email || !is_email($email)) {
        wp_send_json_error('invalid email');
    }

    $subject = "【Cheerful pro】あなたの起業家タイプ診断結果：{$type}";

    $body = "
{$name} さん

Cheerful pro の起業家タイプ診断を受けていただきありがとうございます！
あなたの診断結果をお届けします。

━━━━━━━━━━━━━━━━━━━━━━
　あなたのタイプ：{$type}
　{$sub}
━━━━━━━━━━━━━━━━━━━━━━

【タイプ解説】
{$desc}

【あなたの強み】
{$strengths}

【今すぐできる起業アクション】
{$advice}

【注意ポイント】
{$caution}

━━━━━━━━━━━━━━━━━━━━━━
あなたの才能を活かした起業を、Cheerful proが全力でサポートします！
https://cheerful-pro.com/
━━━━━━━━━━━━━━━━━━━━━━

※このメールは診断結果登録時に自動送信されています。
";

    $headers = array('Content-Type: text/plain; charset=UTF-8');
    $sent = wp_mail($email, $subject, $body, $headers);

    // 管理者にも通知
    wp_mail('info@cheerful-pro.com', "【診断登録】{$name}さん（{$type}）", "名前：{$name}\nメール：{$email}\nタイプ：{$type}", $headers);

    if ($sent) {
        wp_send_json_success('sent');
    } else {
        wp_send_json_error('failed');
    }
}<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://cheerful-pro.com/wp-cheerfulpro/wp-content/plugins/xml-sitemap-feed/assets/sitemap.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://cheerful-pro.com/wp-sitemap-posts-post-1.xml</loc><lastmod>2026-06-02T15:25:37+09:00</lastmod></sitemap><sitemap><loc>https://cheerful-pro.com/wp-sitemap-posts-page-1.xml</loc><lastmod>2026-06-08T15:15:50+09:00</lastmod></sitemap><sitemap><loc>https://cheerful-pro.com/wp-sitemap-taxonomies-category-1.xml</loc><lastmod>2026-06-02T15:10:47+09:00</lastmod></sitemap><sitemap><loc>https://cheerful-pro.com/wp-sitemap-taxonomies-post_tag-1.xml</loc><lastmod>2026-06-02T15:10:47+09:00</lastmod></sitemap><sitemap><loc>https://cheerful-pro.com/wp-sitemap-users-1.xml</loc><lastmod>2026-06-02T15:10:47+09:00</lastmod></sitemap></sitemapindex>
