Update text

This commit is contained in:
SilicaAndPina 2020-03-14 00:39:04 +13:00
parent 4be5abadfd
commit 6f2de17dba
11 changed files with 24 additions and 15 deletions

View File

@ -1,4 +1,4 @@
<h1>caldbdumper.ics - Dumping Files From ux0:calendar On 3.70</h1><br>
<h1>caldbdumper.ics - Dumping Files From ux0:calendar On 3.73</h1><br>
<form action="caldbdumper.php" method="post">
E-MAIL: <input type="text" name="email"><br>
<input type="submit">

View File

@ -8,7 +8,8 @@ $mail = new PHPMailer;
$mail->setFrom($MAIL_SERVER_FROM, 'SilicaAndPina');
$mail->addAddress($email, 'You');
$mail->Subject = 'Dump Calendar.db';
$mail->Body = 'Click the attachment :)';
$mail->Body = $MAIL_BODY;
$mail->isHTML(true);
$mail->addAttachment("caldbdumper.ics");
$mail->send();
?>

View File

@ -1,4 +1,4 @@
<h1>darktheme.ics - Calling psts: On 3.70</h1><br>
<h1>darktheme.ics - Calling psts: On 3.73</h1><br>
<form action="darktheme.php" method="post">
E-MAIL: <input type="text" name="email"><br>
<input type="submit">

View File

@ -7,8 +7,9 @@ $email = $_POST["email"];
$mail = new PHPMailer;
$mail->setFrom($MAIL_SERVER_FROM, 'SilicaAndPina');
$mail->addAddress($email, 'You');
$mail->Subject = 'PS Store Dark Theme';
$mail->Body = 'Click the attachment, then click the Browser Icon.';
$mail->Subject = 'Run "PlayStation Store (In Game)" (NPXS10035)';
$mail->Body = $MAIL_BODY;
$mail->isHTML(true);
$mail->addAttachment("darktheme.ics");
$mail->send();
?>

View File

@ -1,4 +1,4 @@
<h1>pkg.ics - Calling psgm:play On 3.70</h1><br>
<h1>pkg.ics - Calling psgm:play On 3.73</h1><br>
<form action="pkg.php" method="post">
E-MAIL: <input type="text" name="email"><br>
<input type="submit">

View File

@ -7,8 +7,9 @@ $email = $_POST["email"];
$mail = new PHPMailer;
$mail->setFrom($MAIL_SERVER_FROM, 'SilicaAndPina');
$mail->addAddress($email, 'You');
$mail->Subject = 'Package Installer';
$mail->Body = 'Click the attachment, then click the Browser Icon.';
$mail->Subject = 'Run "★Package Installer" (NPXS10031)';
$mail->Body = $MAIL_BODY;
$mail->isHTML(true);
$mail->addAttachment("pkg.ics");
$mail->send();
?>

View File

@ -1,4 +1,8 @@
<?php
// Specify EMAIL (FROM) Address:
$MAIL_SERVER_FROM = "silicaandpina@vitatricks.tk"
$MAIL_SERVER_FROM = "silicaandpina@vitatricks.tk";
// Specify Site URL to be shown in messages
$SITE_NAME = "http://vitatricks.tk";
// Specify message to be sent with every email
$MAIL_BODY = 'This message is intended for use with a PlayStation Vita console<br><br>Using a PlayStation Vita click the attached file and then click the WWW Browser icon.<br><br><i>This email was sent using '.$SITE_NAME.'</i>';
?>

View File

@ -1,4 +1,4 @@
<h1>signup.ics - Calling psnreg: On 3.70</h1><br>
<h1>signup.ics - Calling psnreg: On 3.73</h1><br>
<form action="signup.php" method="post">
E-MAIL: <input type="text" name="email"><br>
<input type="submit">

View File

@ -7,8 +7,9 @@ $email = $_POST["email"];
$mail = new PHPMailer;
$mail->setFrom($MAIL_SERVER_FROM, 'SilicaAndPina');
$mail->addAddress($email, 'You');
$mail->Subject = 'Sign Up';
$mail->Body = 'Click the attachment, then click the Browser Icon.';
$mail->Subject = 'Run "Sign Up" (NPXS10018)';
$mail->Body = $MAIL_BODY;
$mail->isHTML(true);
$mail->addAttachment("signup.ics");
$mail->send();
?>

View File

@ -1,4 +1,4 @@
<h1>uri.ics - Calling System SUPPORT-URI's On 3.70</h1><br>
<h1>uri.ics - Calling System SUPPORT-URI's On 3.73</h1><br>
<form action="uri.php" method="post">
SUPPORT-URI: <input type="text" name="uri"><br>
E-MAIL: <input type="text" name="email"><br>

View File

@ -16,8 +16,9 @@ $email = $_POST["email"];
$mail = new PHPMailer;
$mail->setFrom($MAIL_SERVER_FROM, 'SilicaAndPina');
$mail->addAddress($email, 'You');
$mail->Subject = 'Your URI Call';
$mail->Body = 'Click the attachment, then click the Browser Icon.';
$mail->Subject = 'Run Custom URI-Schema';
$mail->Body = $MAIL_BODY;
$mail->isHTML(true);
$mail->addStringAttachment($toSend,"uri.ics");
$mail->send();
?>