
ThomasP.32471 (California Department of Public Health) asked a question.
Anyone here solved this problem?
We have two distinct applications within Okta. We don’t want the applications to step on each other or use each other’s customized e-mails.
Currently, emails from Okta to "App A" share the same redirect URL as "App B". For instance, after an "App A" user proceeds through Okta's account activation / password reset / etc. through email, they are redirected to "App B" URL.
Is it possible to configure it so that emails redirected to the "App A" website, without compromising "App B"?

Hi Thomas,
Unfortunately I am not sure I understand your environment in this current scenario. Please open a support ticket so you can jump on a call with one of our Support Engineers in order to further assist you with the request.
Best regards,
Cristian Lazar
Okta Support Engineer
Already contacted the support engineer and he said it is not possible. It will be a nice to have feature he said. The option now is to use the multi-tenant feature, org2org.
I was able to configure different redirect URLs in emails based on user attributes.
## Set customRedirect variable based on user's department attribute
#if( ${user.profile.department} == "Marketing" )
#set ( $customRedirect = "?fromURI=https://www.marketingwebsite.com" )
#elseif( ${user.profile.department} == "Sales" )
#set ( $customRedirect = "?fromURI=https://www.saleswebsite.com" )
#elseif( ${user.profile.department} == "Security" )
#set ( $customRedirect = "?fromURI=https://www.securitywebsite.com" )
#end
Then just add "$!customRedirect" to the end of your link, as below:
<a id="reset-password-link" href="${activationLink}$!customRedirect" style="text-decoration: none;">