I found the solution! In case someone needs it, this is what I did:
1 .- Inside your WordPress theme, create a directory named “wpforms-email”
Within this new directory, create a file named “header-default.php” and paste this file
https://gist.github.com/jaredatch/35fd8c03f40fcb916cf0aa45f9c969c7
(I have done this to make sure that the next plugin update doesn’t overwrite the change)
This header-default.php was meant to change the color of the notification’s background to white. You can leave it as it is o edit it from here.
2 .- I added this code on line 267:
<td align=”center”>
<?php
global $wp;
echo home_url( $wp->request )
?>
</td>
3 .-It works!
I am not a coder. If someone has a better solution, I am all ears!