Guest User

Untitled

a guest
Apr 21st, 2018
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. add_filter('wp_mail_from', 'new_mail_from');
  2. add_filter('wp_mail_from_name', 'new_mail_from_name');
  3.  
  4. function new_mail_from($old) {
  5. return 'info@hoge.jp'; // 変更したいメールアドレスを入力
  6. }
  7. function new_mail_from_name($old) {
  8. return 'ほげほげ管理者';//サイト名を入力
  9. }
  10.  
  11. //よく見ると返信先(reply-to)が wordpress@ドメイン名のままなので、これも変更
  12.  
  13. function custom_reply_to($header) {
  14. $header['Reply-To'] = 'info@hoge.jp';
  15. return $header;
  16. }
  17.  
  18. add_filter('s2_email_headers', 'custom_reply_to');
  19.  
  20. //Subscribe2 独自のフィルターがあったようです。ここも以下をつけたして書いておけば、このフィルターだけでもOKな気がします。
  21.  
  22. $header['From'] = "ほげほげ管理者<info@hoge.jp>";
Add Comment
Please, Sign In to add comment