Better default email constants

This commit is contained in:
Ioannis Dressos 2023-10-29 16:51:20 +02:00 committed by Ioannis Dressos
parent 903e0355c1
commit 439d8ce224
No known key found for this signature in database
1 changed files with 5 additions and 4 deletions

View File

@ -59,11 +59,12 @@ var (
)
const (
defaultEmailSubject = "Your wireguard configuration"
defaultEmailContent = `Hi,</br>
<p>In this email you can find your personal configuration for our wireguard server.</p>
defaultEmailSubject = "Your VPN configuration"
<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>
`
)