our app may need to send emails based on the users tenant, so we will have many smtp accounts on hand…
is there somewhere central where we can make changes to the default smtp info on the fly s we can change it based on this tenant? – similar to the db info function.
trying not todo this on each table in the emailing function.
the info would be stored with each tenant/customer and each account is a member of a “tenant/customer” – we would lookup the users tenant id and if the smtp info is available, use it otherwise use the defaults.
when you mean page load – for each table?.. would there be any more streamlined way to load this, wasn’t looking forward to copying to each table, but if that’s the only way…
I think we figured it out, looks like we don’t have to add the code in all the tables.
all the messages don’t get sent immediately, they are stored in a “email queue” table, so that makes it much easier.
we just added this code in our email queue send function, before the $email->send(), this appears to have changed the smtp items as set in the tenant’s record