Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

> Problem z easyletter'em.
jajo
post 24.06.2003, 10:19:47
Post #1





Grupa: Zarejestrowani
Postów: 13
Pomógł: 0
Dołączył: 11.02.2003
Skąd: Poznań

Ostrzeżenie: (0%)
-----


Wielu z Was zapewne zna ten skrypt...
[php:1:de43dec0e5]
<?

# Version 1.1 Debugged, please upgrade older ones...

########################################################################
# Global Settings...
########################################################################

# Set the password for the eMail List editor!
$pass="lalka";
# Name of the datafile
$filelocation="subscribers.txt";
# Title of the newsletter, will be displayed in the FROM field of the mailclient
$lettername="flapjack@bimber.pl";
# Your email, will be the reply-to mail
$youremail="flapjack@bimber.pl";

########################################################################
# Displayed Messages
########################################################################

# Welcome message displayed above the form for subscribing/unsubscribing
$welcomemessage = "This is the place to subscribe and unsubscribe for the Onlinetools.org Newsletter. I will be sending this letter out every time there are some new tools or changes to the page. Your data will not be given to anyone and I send out small text mails only.";

# Sorrymessage for failed subscription, will be followed by the email!
$sorrysignmessage = "Sorry, there is already an entry for ";

# Subscribe message, will be displayed when subscribing
$subscribemessage = "Thank you for subscribing to the newsletter, a confirmation email is on its way!";
# Subscribemail, will be sent when someone subscribes.
$subscribemail = "Thank you for subscribing to the newsletter.";

# Unsubscribemessage for deletion, will be followed by the email!
$unsubscribemessage = "We deleted the following entry: ";

# Unsubscribemessage for failed deletion, will be followed by the email!
$failedunsubscriptionmessage = "Sorry, you cannot unssubscribe as we didn't find an entry for ";

########################################################################
# Let the code begin...
########################################################################

# Checks if the file exists, if not creates a new one
if (!file_exists($filelocation)) {
$newfile = fopen($filelocation,"w+");
fclose($newfile);
}
# Open the datafile and read the content
$newfile = fopen($filelocation,"r");
$content = fread($newfile, filesize($filelocation));
fclose($newfile);
# Remove the slashes php automatically puts before special characters
$content=stripslashes($content);
# Reset the output of the "search result"
$out="";
# Put the entries into the array lines
$lines = explode("%",$content);
for ($key=1;$key<sizeof($lines);$key++){
# when the email is not in the list, add the old entries
if ($lines[$key] != $email){
$out .= "%".$lines[$key];
}
# when it's already in the list, set found
else {
$found=1;
}
}

########################################################################
# Signing in
########################################################################

if ($action=="sign"){
# When there is already a subscription for this email *duh*
if ($found==1){
# Display Sorrymessage
echo "<div align="center"><b>".$sorrysignmessage.$email."</b></div><br><br>";
$disp="yes";
}
# otherwise, add the email to the list
else {
$disp="no";
$newfile = fopen($filelocation,"a+");
$add = "%".$email;
fwrite($newfile, $add);
fclose($newfile);
# display the message of subscription
echo "<div align="center"><b>".$subscribemessage.$email."</b></div><br><br>";
# send confirmation Mail
$submailheaders = "From: $lettername subscription formn";
$submailheaders .= "Reply-To: $youremailn";
mail ($email,$lettername." subscription",$subscribemail,$submailheaders);
}
}

########################################################################
# Signing out
########################################################################

if ($action=="delete"){
$disp="no";
# If the email is in the list...
if ($found == 1){
$newfile = fopen($filelocation,"w+");
fwrite($newfile, $out);
fclose($newfile);
# display the message for deleted items...
echo "<div align="center"><b>".$unsubscribemessage.$email."</b></div><br><br>";
$disp="no";
}
# if the email is not in the list
if ($found != 1){
# display the message that tells that...
echo "<div align="center"><b>".$failedunsubscriptionmessage.$email."</b></div><br><br>";
$disp="YES";
}
}

########################################################################
# The core for the owner of the letter
########################################################################

if ($pw == $pass){

# When nothing was entered so far, display the form
if ($send != "yes" && $send != "test"){
print'<form method="post"><input type="hidden" name=pw value='.$pass.'><input type="hidden" name=send value=yes>
<br><b>Newsletter editor:</b><br><br>
Subject:<br>
<input type="text" name="subject" size=20><br>
Message:<br>
<textarea cols=50 rows=10 wrap="virtual" name="message"></textarea><br><br>
<input type="submit" value="send">
</form>';
}

# Predefine the Mail Settings for sending...
$mailheaders = "From: $letternamen";
$mailheaders .= "Reply-To:$youremailn";
# add data in bcc fields

# Data was ok, send button is pressed
if ($send == "yes"){
$message=stripslashes($message);
$subject=stripslashes($subject);
$lines = explode("%",$content);
for ($key=1;$key<sizeof($lines);$key++){
mail ($lines[$key],$subject,$message,$mailheaders);
}
print "<b>The following email has been sent!</b>";
print "<pre>$mailheadersn$subjectn$message</pre>";
}
}


########################################################################
# The Form for the users...
########################################################################
if ($pw != $pass && $disp != "no"){
print $welcomemessage;
print'
<div align="center"><form method="post">
<input type="text" name="email" value="foo@bar.com" size=30>
<input type="radio" name="action" value="sign" checked>subscribe
<input type="radio" name="action" value="delete">unsubscribe<br>
<input type="submit" value="send">
</form></div>
';
}
print "<!-- Easyletter v1.1 Newsletterscript by Chris Heilmann, get yours @ http://www.onlinetools.org/easyletter/ -->";
?>
[/php:1:de43dec0e5]

Jednak gdy wysylam e-maile do ludzi, a w tersci sa polskie znaki "ąśćń" to zamiast tych "ąśćń" oni dostaja potocznie nazywane "krzaczki". Czy da sie to zmienic?


--------------------
JAJO GG:1315127
www.acid-drinkers.art.pl || jajo@acid-drinkers.art.pl
www.flapjack.vel.pl || jajo@irc.pl
Go to the top of the page
+Quote Post

Posty w temacie
- jajo   Problem z easyletter'em.   24.06.2003, 10:19:47
- - wojtek   Re: Problem z easyletter'em.   24.06.2003, 10:35:46
- - jajo   Nie dziala do konca. Wyslalem taki list: Ą ą Ć ć Ę...   24.06.2003, 10:53:43
- - kurtz   CytatNie dziala do konca. Wyslalem taki list: Ą ą ...   24.06.2003, 13:36:46
- - jajo   Nie dziala... zadne z Waszych podpowiedzi. Najbard...   24.06.2003, 21:35:52
- - spenalzo   CytatNie dziala... zadne z Waszych podpowiedzi. Na...   24.06.2003, 23:59:34
- - kurtz   CytatNie dziala... zadne z Waszych podpowiedzi. Na...   25.06.2003, 09:52:28
- - jajo   CytatCytatNie dziala... zadne z Waszych podpowiedz...   25.06.2003, 20:17:52
- - wojtek   Hm.. Jak juz wyslesz maila, sprawdz go i zobacz je...   25.06.2003, 20:26:07
- - jajo   Dopisuje Ciebie... zobacz sam... jest deklaracja   25.06.2003, 20:52:59
- - wojtek   Chyba jest wszystko dobrze, bo wlasnie dostalem: ...   25.06.2003, 20:58:08
- - jajo   CytatChyba jest wszystko dobrze, bo wlasnie dostal...   25.06.2003, 20:59:12
- - wojtek   The Bat 1.62q ;)   25.06.2003, 21:01:27
- - jajo   Ja Outlookiem... moze cos trzba zmienic... ale gow...   25.06.2003, 21:02:25
- - jajo   Hm... działało. Znowu nie dziala... Ktos z forum c...   1.07.2003, 21:48:53
- - spenalzo   Tak, przekodować tekst do ISO.   1.07.2003, 22:17:44
- - jajo   CytatTak, przekodować tekst do ISO. Do tego słuzy...   1.07.2003, 23:06:03
- - spenalzo   CytatDo tego słuzy ten kod: Tak, wiem, ale sam mus...   2.07.2003, 00:12:45
- - jajo   $string = strtr($string, "xA5x8Cx8FxB9x9Cx9F", ...   2.07.2003, 20:16:01


Reply to this topicStart new topic
1 Użytkowników czyta ten temat (1 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Wersja Lo-Fi Aktualny czas: 19.07.2025 - 14:56