Emails do not have https in links

We are having problems with the emails that are going out. All of them have “http://” in the URL. This seems to be where the problems are created. Our URL includes the “https://”. Is there a way of adding it in all the emails?

same here

I am trying to remember how I fixed it. I found the default file that contained the “http://” and added the “s”. I won’t be trying to reinstall the crm until I can figure out why the app keeps timing out, otherwise I would recreate which file I changed.

In config.php there are a few different values where you specify your site domain:

'db_host_name' => 'localhost',

Here you just just use ‘localhost’ if your DB is, in fact, local. Do not use the public domain name, or 127.0.0.1 (performance will be much worse).

And then the ones you really want are these:

‘host_name’ => ‘my.domain.org’,
‘site_url’ => ‘http://my.domain.org’,

I never tried changing that http to https and seeing the effect on emails, but please try it, I am pretty sure it will work.

These settings can be overriden in config_override.php, make sure you don’t have anything there changing these values.