首页 文章

联系表格7上的自动回复问题

提问于
浏览
0

我有一个工作门户网站,并注册了“联系表格7”以申请工作 . 在“收件人”字段中,我有雇主电子邮件地址“employer@gmail/yahoo/whatever.com”和“发件人”字段“[您的姓名] no-reply@mydomain.com” . 当雇主收到候选人的电子邮件并通过回复回复时,它会直接向候选人的收件箱发送电子邮件(工作正常) . 但问题是,当雇主设置了自动回复电子邮件时,它会发送到我的电子邮件地址“no-reply@mydomain.com”,而候选人不会从雇主那里收到任何东西 . 不确定,为什么自动回复会忽略候选电子邮件 . 请帮帮我 .

I am using following plugins:

  • "WP Job Manager"用于职位列表

  • "Contact Listing for WP Job Manager"申请工作表格 .

Below is the Contact Form7 setup sreenshot

enter image description here

And this is what employer receive

enter image description here

这是HTML的代码:

<div class="form-group">
    <label>Your Name *</label>
    [text* your-name class:form-control] 
</div>
<div class="form-group">
    <label>Your Email *</label>
    [email* your-email class:form-control]
</div>
<div class="form-group">
    <label>Application Subject *</label>
    [text* your-subject class:form-control placeholder "Ex: Applying For Accountant"]
</div>
<div class="form-group">
    <label>Application Cover Letter</label>
    [textarea your-message class:form-control maxlength:500]
</div>
<div class="form-group">
    <label> Upload Resume</label> <em style="font-size: 12px;">( pdf, doc, docx )</em>
    [file upload-file limit:2mb filetypes:pdf|doc|docx class:form-control]
</div>

<div class="form-group">
    [submit "Send"]
</div>

1 回答

  • 0

    您必须使用Mail(2)部分才能使用自动应答器 . 这是官方文档Autoresponder setup for contact form 7

    虽然您可以按照以下步骤操作:

    • 向下滚动您的联系页面,您将看到Mail(2)部分 .

    • 选择使用邮件复选框,然后复制电子邮件短代码[your-email]并将其粘贴到To文本框中 . 我们需要这个短代码来发送自动回复 .

    • 此[您的电子邮件]短代码将捕获用户在提交联系表单时将在电子邮箱中输入的电子邮件 .

    • 然后输入您要通过自动回复发送的消息,然后单击保存按钮 . 现在您的自动回复器已设置完毕 .

    下图供您参考

    enter image description here

相关问题