联系表格 7 - 通知电子邮件中通过换行符分隔显示的大量复选框

发布于 2024-12-19 01:31:03 字数 427 浏览 3 评论 0原文

我对有人填写我的联系表 7 后在邮件中收到的复选框值项目有疑问。 如果有人选中了以下三个框:

  • CHECKBOX1
  • CHECKBOX2
  • CHECKBOX3

那么在我的邮件中它们将显示为: CHECKBOX1, CHECKBOX2, CHECKBOX3

但是,我想将逗号分隔更改为换行符。 另外为每个复选框添加一个唯一值,以便我可以添加 URL: 应在电子邮件中显示如下:

  • CHECKBOX1 – URL LINK
  • CHECKBOX2 – URL LINK
  • CHECKBOX3 – URL LINK

我真的需要这个,有人可以告诉我在联系表 7 的代码中可以在哪里更改此设置吗?

或者有人知道不使用联系表 7 的另一种方法吗?

I have a question about the checkbox value items that I receive in my mail after someone fills in my contact form 7.
If someone has checked these three boxes in the form:

  • CHECKBOX1
  • CHECKBOX2
  • CHECKBOX3

Then in my mail they appear as:
CHECKBOX1, CHECKBOX2, CHECKBOX3

However, I would like to change the comma separation into line breaks.
Plus add a unique value for each checkbox so I can add in a URL:
Should be displayed in the email like this:

  • CHECKBOX1 – URL LINK
  • CHECKBOX2 – URL LINK
  • CHECKBOX3 – URL LINK

I really need this, can somebody please tell me where I can change this within contact form 7’s code?

Or does someone know another way without using contact form 7?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

廻憶裏菂餘溫 2024-12-26 01:31:03

对于 HTML 电子邮件,

编辑:wp-content/plugins/contact-form-7/includes/classes.php

查找function mail_callback。在我的版本中,它位于第 631 行。

将函数编辑为如下所示:

function mail_callback( $matches, $html = false ) {

  if ( isset( $this->posted_data[$matches[1]] ) ) {
    $submitted = $this->posted_data[$matches[1]];

    if ( $html ) {
      $replaced = strip_tags( $replaced );
      $replaced = wptexturize( $replaced );
    }

    if ( is_array( $submitted ) )
      $replaced = join( '<br/>', $submitted );
    else
      $replaced = $submitted;

    $replaced = apply_filters( 'wpcf7_mail_tag_replaced', $replaced, $submitted );

    return stripslashes( $replaced );

  }

  if ( $special = apply_filters( 'wpcf7_special_mail_tags', '', $matches[1] ) )
    return $special;

  return $matches[0];

}

For HTML emails,

Edit: wp-content/plugins/contact-form-7/includes/classes.php

Look for function mail_callback. In my version it's at line 631.

Edit the function to be as so:

function mail_callback( $matches, $html = false ) {

  if ( isset( $this->posted_data[$matches[1]] ) ) {
    $submitted = $this->posted_data[$matches[1]];

    if ( $html ) {
      $replaced = strip_tags( $replaced );
      $replaced = wptexturize( $replaced );
    }

    if ( is_array( $submitted ) )
      $replaced = join( '<br/>', $submitted );
    else
      $replaced = $submitted;

    $replaced = apply_filters( 'wpcf7_mail_tag_replaced', $replaced, $submitted );

    return stripslashes( $replaced );

  }

  if ( $special = apply_filters( 'wpcf7_special_mail_tags', '', $matches[1] ) )
    return $special;

  return $matches[0];

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文