Skip to content

Instantly share code, notes, and snippets.

@ko31
Created October 16, 2016 21:17
Show Gist options
  • Save ko31/086c3f91e18ed1ff85d35e16cbd3e32c to your computer and use it in GitHub Desktop.
Save ko31/086c3f91e18ed1ff85d35e16cbd3e32c to your computer and use it in GitHub Desktop.
【WordPress】Contact Form 7でメール送信時にLINE Notifyにメッセージ通知する
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