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



wp_mail › WordPress Filter Hooks

Seit2.2.0
Veraltetn/v
apply_filters( 'wp_mail', compact( 'to', 'subject', 'message', 'headers', 'attachments' )
Parameter:
  • (array) $args { Array of the `wp_mail()` arguments. @type string|string[] $to Array or comma-separated list of email addresses to send message. @type string $subject Email subject. @type string $message Message contents. @type string|string[] $headers Additional headers. @type string|string[] $attachments Paths to files to attach. }
    Erforderlich: Ja
Definiert in:
Codex:

Filters the wp_mail() arguments.





Quellcode

$atts = apply_filters( 'wp_mail', compact( 'to', 'subject', 'message', 'headers', 'attachments' ) );