parent
a003fb2b29
commit
6efdb9cd1c
1 changed files with 22 additions and 3 deletions
|
@ -96,6 +96,18 @@ fn send_mail(config: &Config, record: &Record, auth: &str) -> Result<Response, l
|
||||||
h2 { "Hello from Skynet!" }
|
h2 { "Hello from Skynet!" }
|
||||||
// Substitute in the name of our recipient.
|
// Substitute in the name of our recipient.
|
||||||
p { "Hi " (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 {
|
p {
|
||||||
"If you are a new member please use the following link:"
|
"If you are a new member please use the following link:"
|
||||||
br;
|
br;
|
||||||
|
@ -113,9 +125,9 @@ fn send_mail(config: &Config, record: &Record, auth: &str) -> Result<Response, l
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
"UL Computer Society"
|
|
||||||
br;
|
|
||||||
"Skynet Team"
|
"Skynet Team"
|
||||||
|
br;
|
||||||
|
"UL Computer Society"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -124,6 +136,13 @@ fn send_mail(config: &Config, record: &Record, auth: &str) -> Result<Response, l
|
||||||
r#"
|
r#"
|
||||||
Hi {recipient}
|
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:
|
If you are a new member please use the following link:
|
||||||
{link_new}
|
{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:
|
If you have issues please refer to our Discord server:
|
||||||
{discord}
|
{discord}
|
||||||
|
|
||||||
UL Computer Society
|
|
||||||
Skynet Team
|
Skynet Team
|
||||||
|
UL Computer Society
|
||||||
"#
|
"#
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue