Created
October 16, 2016 21:17
-
-
Save ko31/086c3f91e18ed1ff85d35e16cbd3e32c to your computer and use it in GitHub Desktop.
【WordPress】Contact Form 7でメール送信時にLINE Notifyにメッセージ通知する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function my_wpcf7_mail_sent( $contact_form ) { | |
$message = "お問い合わせフォームが送信されました。\n"; | |
$message .= "タイトル:" . $contact_form->title; | |
my_send_linenotify( $message ); | |
} | |
add_action( 'wpcf7_mail_sent', 'my_wpcf7_mail_sent', 10, 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment