LoginSignup
2
2

More than 5 years have passed since last update.

WordpressのPHPMailerのアドレス形式チェックをはずす

Last updated at Posted at 2016-04-11

Wordpressのメール送信関数 wp_mail()
PHPMailerを使っている。

docomoとauは

  • @の前に「.」
  • 「.」の連続

という気持ち悪い形式のアドレスが作れてしまい、
かつ、割とユーザーがこの形を使いたがるため、
PHPMailer内の形式チェックをはずさなければならない。

PHPMailerでドットが連続しているアドレスにメール送信できない

上記記事の通り、
/wp-includes/class-phpmailer.php
の986行目あたりの
public static function validateAddress($address, $patternselect = 'auto')

public static function validateAddress($address, $patternselect = 'noregex')
とすることで無事送信することができた。

また、wp_mail()を使う際、
WP Mail SMTP
がSMTP使えて、テストもできるのでおすすめ。

2
2
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2