Viewing 5 replies - 1 through 5 (of 5 total)
  • 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

    (@elvisarslanovic)

    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 https://www.konkurshallen.se

    Thread Starter elvisarslanovic

    (@elvisarslanovic)

    Nevermind ?? Solved it! TNx

    Plugin Author Nitesh

    (@nitesh_singh)

    Awesome that it worked.

    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.