Reputation: 1615
I can't click on the link on the email that SugarCRM sends when the "Assigned User" changes, because it lacks the 'http:' part (starts with //sugarcrmhost.com/blahblah). Is there a way to edit that message so I can force the http://?
I can click on webmail, but not on mail applications (Like thunderbird).
This is the email I receive:
"Some Person has assigned a(n) module_name to Another Person.
You may review this module_name at:
//sugarhost.com/crm//index.php?module=module_name&action=DetailView&record=b9ba48d2-2d20-b1fc-a2f8-4e83765f9062
Upvotes: 0
Views: 1212
Reputation: 1464
The url in the notification emails are based on the following:
{$sugar_config['site_url']}/index.php?module={$focus->module_dir}&action=DetailView&record={$focus->id}
So check your config files and see what site_url
is set to.
Upvotes: 1