简体   繁体   English

将电子邮件从多个电子邮件表单发送到多个电子邮件地址

[英]Send emails from several email forms to several email addresses

I have a email system on my website, people can send me emails by completing a form. 我的网站上有一个电子邮件系统,人们可以通过填写表格向我发送电子邮件。 On the website i have 2 different forms and the JS (contact_me.js) and the PHP (contact_me.php) that make those email forms work. 在网站上,我有2种不同的表单以及使这些电子邮件表单有效的JS(contact_me.js)和PHP(contact_me.php)。 Now i receive emails from both email forms on the same email address but i want to change that, when someone send me a email from the 2nd email form i want to receive that email on the 2nd email address. 现在,我从同一电子邮件地址的两个电子邮件表单接收电子邮件,但是我想更改此设置,当有人从第二电子邮件表单向我发送电子邮件时,我希望在第二电子邮件地址接收该电子邮件。 I am planning to copy/paste the JS and the PHP and call them contact_her.js and contact_her.php and than connect the 2nd email form to the 2nd email address. 我打算复制/粘贴JS和PHP,并将它们命名为contact_her.js和contact_her.php,然后将第二个电子邮件表单连接到第二个电子邮件地址。 I am new at JS, can someone identify the things that i have to modify in the JS and HTML to make this happen? 我是JS的新手,有人可以识别我必须在JS和HTML中进行修改才能实现的功能吗? Here is the code: 这是代码:

HTML: HTML:

                    <form name="sentMessage" id="contactForm" novalidate>
                        <div class="row">
                            <div class="col-md-6">
                                <div class="form-group">
                                    <input type="text" class="form-control" placeholder="Your Name *" id="name" required data-validation-required-message="Please enter your name.">
                                    <p class="help-block text-danger"></p>
                                </div>
                                <div class="form-group">
                                    <input type="email" class="form-control" placeholder="Your Email *" id="email" required data-validation-required-message="Please enter your email address.">
                                    <p class="help-block text-danger"></p>
                                </div>
                                <div class="form-group">
                                    <input type="tel" class="form-control" placeholder="Your Phone *" id="phone" required data-validation-required-message="Please enter your phone number.">
                                    <p class="help-block text-danger"></p>
                                </div>
                            </div>
                            <div class="col-md-6">
                                <div class="form-group">
                                    <textarea class="form-control" placeholder="Your Message" id="message" required data-validation-required-message="Please enter a message and the delivery address."></textarea>
                                    <p class="help-block text-danger"></p>
                                </div>
                            </div>
                        </div>


                            </div>
                            <div class="clearfix"></div>
                            <div class="col-lg-12 text-center">
                                <div id="success"></div>
                                <button type="submit" class="btn btn-xl">Send Message</button>
                            </div>
                        </div>
                    </form>

JS: JS:

$(function () {

$("input,textarea").jqBootstrapValidation({
    preventSubmit: true,
    submitError: function ($form, event, errors) {
        // additional error messages or events
    },
    submitSuccess: function ($form, event) {
        event.preventDefault(); // prevent default submit behaviour
        // get values from FORM
        var name = $("input#name").val();
        var email = $("input#email").val();
        var phone = $("input#phone").val();

        // this is where you're getting your message text
        var message = $("textarea#message").val();

        // add in the childNodes code
        var tags = document.getElementsByClassName('tag');
        var tagText = '';
        for (var i = 0; i < tags.length; i++) {
            tagText += tags[i].childNodes[0].nodeValue + ' ';
        }
        // trim the trailing whitespace
        tagText = tagText.trim();

        // add the message body and the tag text together:
        message = message + '\n\nOrdered products codes: ' + tagText;






        var firstName = name; // For Success/Failure Message
        // Check for white space in name for Success/Fail message
        if (firstName.indexOf(' ') >= 0) {
            firstName = name.split(' ').slice(0, -1).join(' ');
        }
        $.ajax({
            url: "././mail/contact_me.php",
            type: "POST",
            data: {
                name: name,
                phone: phone,
                email: email,
                message: message,
            },
            cache: false,
            success: function () {
                // Success message
                $('#success').html("<div class='alert alert-success'>");
                $('#success > .alert-success').html("<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>&times;")
                    .append("</button>");
                $('#success > .alert-success')
                    .append("<strong>Your message has been sent. </strong>");
                $('#success > .alert-success')
                    .append('</div>');


                //clear all fields
                $('#contactForm').trigger("reset");
                $('.tag').remove();



            },
            error: function () {
                // Fail message
                $('#success').html("<div class='alert alert-danger'>");
                $('#success > .alert-danger').html("<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>&times;")
                    .append("</button>");
                $('#success > .alert-danger').append("<strong>Sorry " + firstName + ", it seems that my mail server is not responding. Please try again later or send a email yourself at order@o-p-a-l.eu");
                $('#success > .alert-danger').append('</div>');
            },
        })
    },
    filter: function () {
        return $(this).is(":visible");
    },
});

$("a[data-toggle=\"tab\"]").click(function (e) {
    e.preventDefault();
    $(this).tab("show");
});
});


/*When clicking on Full hide fail/success boxes */
$('#name').focus(function () {
    $('#success').html('');
});

PHP: PHP:

<?php
// Check for empty fields
if(empty($_POST['name'])        ||
   empty($_POST['email'])       ||
   empty($_POST['phone'])       ||
   empty($_POST['message'])     ||
   !filter_var($_POST['email'],FILTER_VALIDATE_EMAIL))
{
    echo "No arguments Provided!";
    return false;
}

$name = $_POST['name'];
$email_address = $_POST['email'];
$phone = $_POST['phone'];
$message = $_POST['message'];

// Create the email and send the message
$to = 'email1@gmail.com'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to.
$email_subject = "Website Contact Form:  $name";
$email_body = "You have received a new message from your website contact form.\n\n"."Here are the details:\n\nName: $name\n\nEmail: $email_address\n\nPhone: $phone\n\nMessage:\n$message";
$headers = "From: email1@gmail.com\n"; // This is the email address the generated message will be from. We recommend using something like noreply@yourdomain.com.
$headers .= "Reply-To: $email_address"; 
mail($to,$email_subject,$email_body,$headers);
return true;            
?>

Thanks. 谢谢。

To your question: 对你的问题:

when someone send me a email from the 2nd email form i want to receive that email on the 2nd email address 当有人通过第二电子邮件表格向我发送电子邮件时,我想在第二电子邮件地址上接收该电子邮件

One way you can do this is to send a variable to your data to specify which form your are sending from: 一种执行此方法的方法是将变量发送到数据中,以指定从中发送数据的形式:

data: {
    name: name,
    phone: phone,
    email: email,
    message: message,
    form: 'form1'
},

The value form1 can be stored/retrieved in many ways. form1可以通过多种方式存储/检索。 One such way would be to include it in the name: 一种这样的方法是将其包括在名称中:

<form name="form1">

Then, in javascript, you can retrieve the value of the form name like: 然后,在javascript中,您可以检索表单名称的值,例如:

var myForm = $('#whatEverYourFormIdIs').attr('name');

Then, update your contact_me.php script to check the value of form property from JSON and update your email TO accordingly. 然后,更新您的contact_me.php脚本以从JSON检查form属性的值,并相应地将电子邮件更新为TO。

The other way would be to changet the $.ajax({url}) property depending on which form your are submitting. 另一种方法是根据提交的表单更改$.ajax({url})属性。

You could put a hidden field in the form like 您可以将隐藏字段放入如下形式

<input type="hidden" name="targetEmail" value="email1">

and pass that to the server, that way the server will know what email to send the form contents to. 并将其传递给服务器,这样服务器将知道将表单内容发送到的电子邮件。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在一个字段中写几封电子邮件 - write in one field several email 将电子邮件发送到多个地址的脚本 - Script to send email to multiple addresses 在不禁用集成 email 服务的情况下从 Firebase 发送电子邮件 - Send emails from Firebase without disabling the integrated email service 从 email 地址数组中仅获取 email 地址域名 - Getting only the email addresses domain name from an array of email addresses 在 Google 电子表格中向多个地址发送一封电子邮件 - Send one Email to Multiple Addresses in Google Spreadsheet 将电子邮件发送到Google电子表格中的多个地址 - Send Email to Multiple Addresses in Google Spreadsheet 在Javascript中匹配几种不同的电子邮件地址格式 - Matching several different email address formats in Javascript 根据 Google 表单中的单元格内容将电子邮件发送到单独的 email 地址 - Sending Emails to separate email addresses based on cell content in a Google Form 将带有不同 PDF 的电子邮件发送到不同的电子邮件附件 - send email with different PDFs to different emails attachment 如何获取Email.send以在将来发送电子邮件(从现在起7天,现在14天等) - How to get Email.send to send emails in the future (7 days, 14 days from now, etc)
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM