| 1460 | /** |
| 1461 | * Filter the content of the welcome email after site activation before tokenized replacements have been made. |
| 1462 | * |
| 1463 | * Content should be formatted for transmission via wp_mail(). |
| 1464 | * |
| 1465 | * @since x.x.x |
| 1466 | * |
| 1467 | * @param string $welcome_email Message body of the email. |
| 1468 | * @param int $blog_id Blog ID. |
| 1469 | * @param int $user_id User ID. |
| 1470 | * @param string $password User password. |
| 1471 | * @param string $title Site title. |
| 1472 | * @param array $meta Signup meta data. |
| 1473 | */ |
| 1474 | $welcome_email = apply_filters( 'tokenized_update_welcome_email', $welcome_email, $blog_id, $user_id, $password, $title, $meta ); |
| 1475 | |