Initial commit

This commit is contained in:
2025-10-02 08:54:03 +02:00
commit ea54638227
1642 changed files with 53677 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
const { cryptchaCheck } = require("../lib/utils")
;(function () {
throw {
status: 500,
data: "Hello, World!",
}
cryptchaCheck()
})()

View File

@@ -0,0 +1,11 @@
const { noReplyEmail, contactEmail } = require("../config")
;(function () {
context.smtp.sendMail({
to: contactEmail,
from: noReplyEmail,
fromName: "BinKrassDuFass",
replyTo: noReplyEmail,
subject: "New Contact Request",
plain: "Neue Kontaktanfrage",
})
})()