当我的网站发送电子邮件给用户,所以发送一些这样的平淡和污垢,所以这就是我喜欢/在页面上得到一些颜色的样式。
我与朋友交谈,他说可以设置发送给在网站上注册的用户的电子邮件的样式。所以不只是这么无聊的电子邮件使用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å 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>";
}
答案 0 :(得分:1)
如果您提供正确的标题,则可以使用HTML。
示例:
$header .= "MIME-Version: 1.0\r\n";
$header .= "Content-Type: text/html; charset=ISO-8859-1\r\n";