wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_application_password_created_email › WordPress Filter Hooks

Seit7.2.0
Veraltetn/v
apply_filters( 'wp_application_password_created_email', $email, $user, $new_item )
Parameter: (3)
  • () email { Used to build wp_mail(). @type string $to The email address of the intended recipient. @type string $subject The subject of the email. @type string $message The content of the email. The following strings have a special meaning and will get replaced dynamically: - `###USERNAME###` The user's display name. - `###APPLICATION_PASSWORD_NAME###` The name of the application password. - `###EMAIL###` The user's email address. - `###SITENAME###` The name of the site. - `###SITEURL###` The URL to the site. @type string $headers Headers. }
    Erforderlich: Ja
  • () user The user object.
    Erforderlich: Ja
  • () new_item The application password details.
    Erforderlich: Ja
Definiert in:
Codex:

Filters the contents of the email notification sent to a user when a new application password is created.





Quellcode

$email = apply_filters( 'wp_application_password_created_email', $email, $user, $new_item );