douhan9191 2016-08-23 10:40
浏览 48
已采纳

如何将带有ajax的表单复选框中的值传递给邮件

I need help with value sending to mail from form on html page, there is 3 file: test.html with form group checkbox, contact.php and contact.js

This is the contact.js:

$(function () {

$('#contact-form').validator();

$('#contact-form').on('submit', function (e) {
    if (!e.isDefaultPrevented()) {
        var url = "contact.php";

        $.ajax({
            type: "POST",
            url: url,
            data: $(this).serialize(),
            success: function (data)
            {
                var messageAlert = 'alert-' + data.type;
                var messageText = data.message;

                var alertBox = '<div class="alert ' + messageAlert + ' alert-dismissable"><button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>' + messageText + '</div>';
                if (messageAlert && messageText) {
                    $('#contact-form').find('.messages').html(alertBox);
                    $('#contact-form')[0].reset();
                }
            }
        });
        return false;
    }
})
});

and this is contact.php for processing form to mail

$fields = array('name' => 'Name', 'surname' => 'Surname', 'phone' => 'Phone', 'email' => 'Email', 'message' => 'Message' 'checkboxes' => 'Colors');

form group is:

<div class="form-group">
<div class="col-md-12">
    <label>Colors:</label>
</div>
<div class="col-md-12">
    <label class="checkbox-inline" for="form_checkboxes1">
        <input type="checkbox" name="checkboxes[]" id="form_checkboxes1" value="Blue"> + Blue
    </label>
    <label class="checkbox-inline" for="form_checkboxes2">
        <input type="checkbox" name="checkboxes[]" id="form_checkboxes2" value="Green"> + Green
    </label>
    <label class="checkbox-inline" for="form_checkboxes3">
        <input type="checkbox" name="checkboxes[]" id="form_checkboxes3" value="Orange"> + Orange
    </label>
</div>

the problem is when choose an option for Colors or choose every three colors after mail sent result is Colors: array

now, I trie to change line in contact.php adding

$checkboxes = implode(',',$_POST['checkboxes']);

but no succsess

rest of kod in contact.php is:

try{
    $emailText = "text";
    foreach ($_POST as $key => $value) {
        if (isset($fields[$key])) {
            $emailText .= "$fields[$key]: $value
";}
        }
        mail($sendTo, $subject, $emailText, "From: " . $from);
        $responseArray = array('type' => 'success', 'message' => $okMessage);
    }
  • 写回答

1条回答 默认 最新

  • douzao2590 2016-08-23 10:58
    关注

    Try this code it's works for you. your code not working because of you have pass array in color so you need to implode your array and then paas to you mail. i have try this and it's works fine.

    try{
        $emailText = "text";
        foreach ($_POST as $key => $value) {
    
            if (is_array($value)) {
               $emailText .= "$fields[$key]: " . implode(',', $value) . "
    ";
                continue;
            }
            if (isset($fields[$key])) {
                $emailText .= "$fields[$key]: $value
    ";}
            }
            mail($sendTo, $subject, $emailText, "From: " . $from);
            $responseArray = array('type' => 'success', 'message' => $okMessage);
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀