Fix: update email to explain more about Skynet/Compsoc

Closes #9
This commit is contained in:
silver 2023-08-05 19:23:47 +01:00
parent a003fb2b29
commit 6efdb9cd1c

View file

@ -96,6 +96,18 @@ fn send_mail(config: &Config, record: &Record, auth: &str) -> Result<Response, l
h2 { "Hello from Skynet!" }
// Substitute in the name of our recipient.
p { "Hi " (recipient) "," }
p {
"As part of the UL Computer Society you get an account on our Skynet cluster."
br;
"This gives you access to some of teh various services we offer:"
ul {
li { "Email" }
li { "Gitlab" }
li { "Linux Webhost" }
}
br;
"The following invite will remain active until the end of year."
}
p {
"If you are a new member please use the following link:"
br;
@ -113,9 +125,9 @@ fn send_mail(config: &Config, record: &Record, auth: &str) -> Result<Response, l
}
p {
"UL Computer Society"
br;
"Skynet Team"
br;
"UL Computer Society"
}
}
};
@ -124,6 +136,13 @@ fn send_mail(config: &Config, record: &Record, auth: &str) -> Result<Response, l
r#"
Hi {recipient}
As part of the UL Computer Society you get an account on our Skynet cluster.
This gives you access to some of teh various services we offer:
* Email
* Gitlab
* Linux Webhost
The following invite will remain active until the end of year.
If you are a new member please use the following link:
{link_new}
@ -133,8 +152,8 @@ fn send_mail(config: &Config, record: &Record, auth: &str) -> Result<Response, l
If you have issues please refer to our Discord server:
{discord}
UL Computer Society
Skynet Team
UL Computer Society
"#
);