私のウェブサイトの場合は、ユーザーにメールを送信するので、そのような当たり障りのない汚れを送信します。そうすることで、少しスタイルのあるページに色を付けたいと思います。
私は友人と話しました、そして彼はあなたがサイトに登録するユーザーに送る電子メールをスタイリングすることが可能であると言います。だから、それはそのような退屈な電子メールの使用だけではありません。
それ以外の場合は、私に聞いて大歓迎です。
あなたが私を助けてくれることを願っています
リンクを教えてもらえますか、それともユーザーに素敵なメールを送るために何をすべきか教えてください。
if ($stmt = $mysqli->prepare('SELECT NULL FROM `brugere` WHERE `email` = ?')) {
$stmt->bind_param('s', $email);
$email = $_POST['email'];
$stmt->execute();
$stmt->store_result();
$count = $stmt->num_rows;
$stmt->close();
if ($count > 0)
{
$user_found = 1;
}
}
if(!isset($user_found))
{
if($_POST["password"] != $_POST["gentag"])
{
$errors = 1;
echo "<li id=\"check_not\">Skrive ens password på siden..</li>";
}
if (empty($_POST['password']) && empty($_POST['gentag']))
{
$errors = 1;
echo "<li id=\"check_not\">Skrive et password på siden..</li>";
}
if(!isset($errors))
{
$pb = null;
include "class.upload.php";
$handle = new Upload($_FILES['file']);
if($handle->uploaded)
{
//lidt mere store billeder
$handle->image_resize = true;
$handle->image_ratio_y = true;
$handle->image_x = 220;
$handle->Process("profil/store");
//til profil billede lign..
$handle->image_resize = true;
$handle->image_ratio_crop = true;
$handle->image_y = 75;
$handle->image_x = 75;
$handle->Process("profil");
$pb = $handle->file_dst_name;
echo "<h2>Tak for du opret dig hos xx.dk</h2>";
?>
<img src="http://xx.dk/ (...) echo $pb;?>" alt="profilbillede" height="75" width="75"><br />
<?php
echo "<li id=\"check_ok\">Dit billede blev upload</li>";
}
else
{
?>
<img src="http://xx.dk/ (...) alt="profilbillede" height="128" width="128"><br />
<?php
echo "<li id=\"check_not\">Du upload intet billede. Vi har dog valgt et profil billede for dig.</li>";
$pb = 'bruger_intet.png';
}
if ($stmt = $mysqli->prepare('INSERT INTO `brugere` (`email`, `katogori`, `djnavn`, `profilbillede`, `profiltekst`, `facebook`, `booking`, `password`, `code`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)')) {
$stmt->bind_param('sissssssi', $email, $katogori, $djnavn, $profilbillede, $profiltekst, $facebook, $booking, $password, $code);
$email = $_POST['email'];
$katogori = $_POST["kategori"];
$djnavn = $_POST["djnavn"];
$profilbillede = $pb;
$profiltekst = $_POST["tekst"];
$facebook = $_POST["facebook"];
$booking = $_POST["booking"];
$password = sha1($_POST['password']);
$code = rand(111111111,999999999);
$stmt->execute();
$stmt->close();
$to = $email; // den som skal modtage mailen!
$subject = "Hej xx.dk - Godkendt brugere konto"; // sende fra
$msg = "Tak for du vil opret dig på xx.dk!. \n \n For at kun activate din konto skal du bare klikke på dette link her: \n \n http://xx.dk/ (...) \n \n Du kan ikke besvar den her email!!";
$header = "from:xx.dk - Godkendt Profil!! <support@xx.dk>";
if(mail($to, $subject, $msg, $header))
{
echo "<li id=\"check_ok\">Tilsendt e-mail til; $to - Tjek email</li>";
}
}
else
{
echo 'Der opstod en fejl i erklæringen: ' . $mysqli->error;
}
}
}
else {
echo "<li id=\"check_not\">Der findes allerede en bruger med denne mail - Gør et forsøg mere <a href=\"http://xxx.dk/ (...) igen...</a></li>";
}