Title: Emails in trash-folder
Last modified: August 30, 2016

---

# Emails in trash-folder

 *  Resolved [elvisarslanovic](https://wordpress.org/support/users/elvisarslanovic/)
 * (@elvisarslanovic)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/emails-in-trash-folder/)
 * Hello!
 * Thank you for this plug-in , im rly lovin it!
 * A minor question tho!
 * All emails sent to bidders are beeing sent to the trashfolders, im guessing it
   could be that the “sender” is [wordpress@domainname.com](https://wordpress.org/support/topic/emails-in-trash-folder/wordpress@domainname.com?output_format=md)..
 * Is there a way to change that the sender could be called something like [noreply@domainname.com](https://wordpress.org/support/topic/emails-in-trash-folder/noreply@domainname.com?output_format=md)
   instead of wordpress?
 * Thank you!
 * [https://wordpress.org/plugins/ultimate-auction/](https://wordpress.org/plugins/ultimate-auction/)

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

 *  [WisdmLabs](https://wordpress.org/support/users/wisdmlabs/)
 * (@wisdmlabs)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/emails-in-trash-folder/#post-6736838)
 * Hi elvisarslanovic,
 * The issues you mentioned has no relation with ultimate auction plugin as we use
   default WordPress wp_mail functionality.
 * We would still like to help you to fix the problem.
 * 1. You will have to check if any filter not supporting the wild card letters 
   like *,@ is applied to the inbox due to which the email are sent to trash folders.
 * 2. Add below code in currently activated theme’s functions.php to change WordPress“
   from” email header.
 *     ```
       function wdm_fromemail($email) {
           $wpfrom = get_option('admin_email');
           return $wpfrom;
       }
   
       function wdm_fromname($email){
           $wpfrom = get_option('blogname');
           return $wpfrom;
       }
   
       add_filter('wp_mail_from', 'wdm_fromemail');
       add_filter('wp_mail_from_name', 'wdm_fromname');
       ```
   
 *  Thread Starter [elvisarslanovic](https://wordpress.org/support/users/elvisarslanovic/)
 * (@elvisarslanovic)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/emails-in-trash-folder/#post-6736839)
 * Hello!
 * Thank you for your support!
 * I tried to add the code but my page stoped working after i did that code snippet.
 * What do i need to change ? my webpage is [http://www.konkurshallen.se](http://www.konkurshallen.se)
 *  Thread Starter [elvisarslanovic](https://wordpress.org/support/users/elvisarslanovic/)
 * (@elvisarslanovic)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/emails-in-trash-folder/#post-6736841)
 * Nevermind 🙂 Solved it! TNx
 *  Plugin Author [Nitesh](https://wordpress.org/support/users/nitesh_singh/)
 * (@nitesh_singh)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/emails-in-trash-folder/#post-6736879)
 * Awesome that it worked.
 *  [Lastpoke](https://wordpress.org/support/users/lastpok/)
 * (@lastpok)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/emails-in-trash-folder/#post-6736916)
 * The same issue I was looking for.
 * Thanks a lot!!

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

The topic ‘Emails in trash-folder’ is closed to new replies.

 * ![](https://ps.w.org/ultimate-auction/assets/icon-128x128.png?rev=1494738)
 * [Ultimate Wordpress Auction Plugin](https://wordpress.org/plugins/ultimate-auction/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ultimate-auction/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ultimate-auction/)
 * [Active Topics](https://wordpress.org/support/plugin/ultimate-auction/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ultimate-auction/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ultimate-auction/reviews/)

 * 5 replies
 * 4 participants
 * Last reply from: [Lastpoke](https://wordpress.org/support/users/lastpok/)
 * Last activity: [10 years, 5 months ago](https://wordpress.org/support/topic/emails-in-trash-folder/#post-6736916)
 * Status: resolved