-3

当它到我的网站时,向用户发送电子邮件,所以发送一些这样平淡无奇的污垢,这就是我想要的方式/在页面上获得一些颜色,这是一种有点风格。

我与一位朋友交谈,他说可以对您发送给在该网站上注册的用户发送的电子邮件进行样式设置。因此,使用 get 不仅仅是如此无聊的电子邮件。

希望你理解否则你很欢迎问我

我希望你能帮帮我

你能给我一个链接或告诉我应该怎么做,这样我就可以给我的用户发一封很好的电子邮件。

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&#229; siden..</li>";
    }
    if (empty($_POST['password']) && empty($_POST['gentag']))
    {
        $errors = 1;
        echo "<li id=\"check_not\">Skrive et password p&#229; 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&#248;r et fors&#248;g mere <a href=\"http://xxx.dk/ (...) igen...</a></li>";
}
4

1 回答 1

1

如果您提供正确的标题,您可以只使用 HTML。

例子:

$header .= "MIME-Version: 1.0\r\n";
$header .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
于 2012-06-21T15:31:56.647 回答