Results 1 to 3 of 3

Thread: Email Notification not working

  1. #1
    nirensewsanker is offline Senior Member
    Join Date
    May 2009
    Posts
    43

    Question Email Notification not working

    Hi guys

    I am using 5.2.0.h and my email notifications are not working. I have checked my DNS as well as every aspect within the Email settings and each user setting without any luck. Does anyone have any idea or knows if I am missing anything?

    Thank you

  2. #2
    salesagility's Avatar
    salesagility is offline Sugar Community Member
    Join Date
    Aug 2006
    Location
    UK
    Posts
    2,379

    Default Re: Email Notification not working

    first question that occurs is can you send emails from the sugarcrm client?

    second question, but one you may have covered is did you set admin>email settings notifications check box?

  3. #3
    dechsiri is offline Junior Member
    Join Date
    Sep 2009
    Posts
    2

    Default Re: Email Notification not working

    change code on line 56 file modules/ProjectTask/Save.php

    form
    PHP Code:
    foreach($project->column_fields as $field)
    {
        if(isset(
    $_REQUEST[$field]))
        {
            
    $project->$field $_REQUEST[$field];
        }

        if(!isset(
    $_REQUEST['milestone_flag']))
        {
            
    $project->milestone_flag '0';
        }
    }

    $GLOBALS['check_notify'] = false;
    if (!empty(
    $_POST['assigned_user_id']) && ($project->assigned_user_id != $_POST['assigned_user_id']) && ($_POST['assigned_user_id'] != $current_user->id)) {
        
    $GLOBALS['check_notify'] = true;

    to
    PHP Code:
    $GLOBALS['check_notify'] = false;
    if (!empty(
    $_POST['assigned_user_id']) && ($project->assigned_user_id != $_POST['assigned_user_id']) && ($_POST['assigned_user_id'] != $current_user->id)) {
        
    $GLOBALS['check_notify'] = true;
    }

    foreach(
    $project->column_fields as $field)
    {
        if(isset(
    $_REQUEST[$field]))
        {
            
    $project->$field $_REQUEST[$field];
        }

        if(!isset(
    $_REQUEST['milestone_flag']))
        {
            
    $project->milestone_flag '0';
        }


Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Email notification when assigning lead not working
    By esoehendra in forum General Discussion
    Replies: 6
    Last Post: 2009-09-02, 06:23 PM
  2. Email notification not working
    By jungler in forum Help
    Replies: 2
    Last Post: 2009-08-07, 09:13 AM
  3. Is the e-mail notification working ?
    By Casio2000 in forum Help
    Replies: 2
    Last Post: 2008-10-31, 01:15 PM
  4. Email notification not working
    By lapa in forum General Discussion
    Replies: 2
    Last Post: 2005-08-26, 08:22 PM

Tags for this Thread

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
  •