VNP
When a new user registers, the system automatically sends a confirmation email of the status of the registration. It is also possible to customize the content of this email that the user will receive.
The logo that is presented in the registration email can be configured from the VNP Backend in the language modules
searching for the string: email_attivazione_utente
And then clicking on the bold text it would be possible to modify the body of the email that the system will send in automatic.
Specifically the following string should be found and modified:
<img src="${testate.gruppologo}" and then sostitute the variable ${testate.gruppologo} by providing the direct link that points to image to insert in the email.
If for example it is decided to insert the logo that is found in the following website:
(https://www.virtualacademy.it/images/logos/1/logo_colored.jpg), then the following string should be modified:
<img src="${testate.gruppologo}" style="max-width:500px;" id="headerLogoImage">
in
<img src="https://www.virtualacademy.it/images/logos/1/logo_colored.jpg" style="max-width:500px;" id="headerLogoImage">