Better default email constants

This commit is contained in:
Ioannis Dressos 2023-10-29 16:51:20 +02:00 committed by GitHub
parent 8aa8837eb6
commit 0380988ffd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,11 +48,12 @@ var (
) )
const ( const (
defaultEmailSubject = "Your wireguard configuration" defaultEmailSubject = "Your VPN configuration"
defaultEmailContent = `Hi,</br>
<p>In this email you can find your personal configuration for our wireguard server.</p>
<p>Best</p> defaultEmailContent = `
<p>Greetings,</p>
<p>Please find attached your personal configuration for our VPN server.<br>You may find instructions on how to install the WireGuard VPN client <a href="https://www.wireguard.com/install/">here</a>.</p>
<p>Best regards.</p>
` `
) )