Email case creation created by default user

We've implemented de inbound email automatic case creation. Following the next tutorial:

https://support.sugarcrm.com/Knowledge_Base/Email/Automatically_Creating_Cases_From_Inbound_Emails/ 

Everything is working fine, however we noticed all cases are created by a specfic user. Our guess its the default user/ the account administrator.

We would like to change this so its created by a user from a team or a different specific user.

Just to be clear we are talkin about the "Created by" field not the "Assignee"

We've tried the next code in the InboundEmail.php in ./costume/modules/InboundEmail/

handleCreateCase(...){
....
   $c->created_by = 'My.Username'
...
}

That would not work

Any guesses?

Parents Reply Children
  • When you set created by/date and updated by/date in code you need to tell the system not to override them in the save process. You can override some, or all of the following:

       //prevent the save process from overriding created by and modified by users and dates on the case bean ($c)

       $c->update_date_modified = false;
       $c->update_modified_by = false;
       $c->set_created_by = false;
       $c->update_date_entered = false;

    // in your case if you are just overriding the created by then just use

       $c->set_created_by = false;

    //note that the initial save process also sets the modified by so you may want to update that too if different from what the default would be.

    Also, you will want to set the above, and the created by, BEFORE the save, not after.

    Francesca