London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Advanced & External reviews Email template edit

Vote:
 

Hi,

We are implementing Advance External review Add on. We are using Episerver 11.14.1 version hosted on DXC.

We want to edit the email template set for review:

Could you please help me where can I find this template. I tried to search in "Resources" folder in project and in Admin mode. Have not found anywhere.

Thanks,

Sanket

#223987
Edited, Jun 09, 2020 6:41
Vote:
 

Hi,

The advanced reviews add-on can be configured using a IConfigurableModule like this:

[InitializableModule]
[ModuleDependency(typeof(FrameworkInitialization))]
public class ReviewEmailInitialisation : IConfigurableModule
{
    public void ConfigureContainer(ServiceConfigurationContext context)
    {
        context.Services.Configure<ExternalReviewOptions>(options =>
        {
            options.EmailEdit = "Hi,\n\nHere's your edit link:\n[#link#]";
            options.EmailView = "Hi,\n\nHere's your review link:\n[#link#]";
        });
    }

    public void Initialize(InitializationEngine context)
    {
    }

    public void Uninitialize(InitializationEngine context)
    {
    }
}

You can find documentation here:
https://github.com/advanced-cms/advanced-reviews

#223992
Edited, Jun 09, 2020 8:31
Vote:
 

Hi, 

When I create Edit URL for an External reviewer, the  [#link#] in the mail  asks for Edit mode login for External reviewer and eventually fails to login.

I have created a user Reviewer1 and added it to ExternalReviewers group. 

Is there any configuration that is required for this ?

Any answer would be appreciated.

Thanks

#283502
Edited, Jul 11, 2022 11:45
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.