Title: Customize Activate Link Mail
Last modified: June 27, 2021

---

# Customize Activate Link Mail

 *  Resolved [karbikar](https://wordpress.org/support/users/karbikar/)
 * (@karbikar)
 * [5 years ago](https://wordpress.org/support/topic/customize-activate-link-mail/)
 * There is an email with the link where User have to click on the link to get it
   approved. I want to customize that mail which user receives when they signup.
   I couldn’t find the customize option for that mail.
    That’s what I am looking
   for…. Please tell where we can customize it.?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Support [Patrick – WPMU DEV Support](https://wordpress.org/support/users/wpmudevsupport12/)
 * (@wpmudevsupport12)
 * [5 years ago](https://wordpress.org/support/topic/customize-activate-link-mail/#post-14600539)
 * Hi [@karbikar](https://wordpress.org/support/users/karbikar/)
 * I hope you are doing well.
 * I am afraid it isn’t possible from the plugin interface, but we can hook the
 * > wpmu_signup_user_notification_email
 * :
 * [https://developer.wordpress.org/reference/hooks/wpmu_signup_user_notification_email/](https://developer.wordpress.org/reference/hooks/wpmu_signup_user_notification_email/)
 * An example:
 *     ```
       <?php
   
       // Customise activation email:
   
       add_filter('wpmu_signup_user_notification_email', 'my_custom_email_message', 10, 4);
   
       function my_custom_email_message($message, $user, $user_email, $key) {
   
         //Here is the new message:
         $message = sprintf(
           __(
           ( "This is your custom text, to activate your account please click on the link:\n\n%s\n\n After you activate you will be able to log in.\n\n" ),
             $user, $user_email, $key, $meta), site_url( "?page=forminator_activation&key=$key" )
           );
   
       return sprintf($message);
   
       }
       ```
   
 * This code can be installed as a mu-plugin file following the guide at:
    [https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins](https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins)
 * Let us know if this is what you are looking for.
    Best Regards Patrick Freitas
 *  Plugin Support [Dimitris – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support6/)
 * (@wpmudev-support6)
 * [5 years ago](https://wordpress.org/support/topic/customize-activate-link-mail/#post-14622856)
 * Hello [@karbikar](https://wordpress.org/support/users/karbikar/)
 * Hope you’re doing well!
    I’m marking this topic as resolved due to recent inactivity.
   Feel free to post back here or create a new topic if you need more help. 🙂
 * Take care,
    Dimitris

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Customize Activate Link Mail’ is closed to new replies.

 * ![](https://ps.w.org/forminator/assets/icon-256x256.gif?rev=3443182)
 * [Forminator Forms – Contact Form, Payment Form & Custom Form Builder](https://wordpress.org/plugins/forminator/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/forminator/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/forminator/)
 * [Active Topics](https://wordpress.org/support/plugin/forminator/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/forminator/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/forminator/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [Dimitris – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support6/)
 * Last activity: [5 years ago](https://wordpress.org/support/topic/customize-activate-link-mail/#post-14622856)
 * Status: resolved