Results 1 to 2 of 2

Thread: "Check Email Button" not visible in inbox

  1. #1
    dthardy1 is offline Member
    Join Date
    Apr 2006
    Posts
    6

    Exclamation "Check Email Button" not visible in inbox

    I moved Sugar to a new server and now the "check email" button is not visible in the inbox. I have searched dozens of posts trying to find something related but haven't found anything close. Not sure where the problem lies. Can someone point me in the right direction.
    Last edited by dthardy1; 2006-08-09 at 08:12 PM.

  2. #2
    sacramentojoe is offline Sugar Community Member
    Join Date
    Nov 2005
    Posts
    447

    Default Re: "Check Email Button" not visible in inbox

    Quote Originally Posted by dthardy1
    I moved Sugar to a new server and now the "check email" button is not visible in the inbox. I have searched dozens of posts trying to find something related but haven't found anything close. Not sure where the problem lies. Can someone point me in the right direction.

    This button only shows up if you user has their email setup.
    You might need to check the email for your users and make sure that all the settings are right.

    The Email does a check
    if($current_user->hasPersonalEmail()

    The hasPersonalEmail() function is this

    function hasPersonalEmail() {
    $q = 'SELECT count(id) AS count FROM inbound_email WHERE group_id = \''.$this->id.'\'';
    $r = $this->db->query($q);
    $a = $this->db->fetchByAssoc($r);
    if($a['count'] > 0)
    return true;
    else
    return false;
    }


    Good luck.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •