Guida per creare un box invia email alla propria casella di posta, da utilizzare in uno spazio web che supporti il php

« Older   Newer »
  Share  
view post Posted on 9/10/2007, 14:16
Avatar

Developer

Group:
NB Onorary
Posts:
17,026
Location:
Milano

Status:


Guida per creare un box invia email alla propria casella di posta.
Molti di voi,spesso,vi siete chiesti come creare un box email magari simile a quello di forumfree.
Lo script che ora posterò di seguito consiste nel creare due file,uno in html per dare l'aspetto al box email,un altro per il php.
Possiamo chiamare i file come meglio vogliamo l'importante è fare le modifiche opportune.
CODICE
<?php




$destinatario = ""; // Indirizzo dove verranno recapitate le email.
$url = ""; // Inserisci l'url della pagina a cui verrà redirezionata.
$oggetto = htmlspecialchars($_POST["oggetto"]);
$mittente = $_POST["tua_email"];
$messaggio = $_POST["messaggio"];
$errore = array();

$ip = $_SERVER['REMOTE_ADDR'];
$data = date("j/m , H:s");
if (!eregi("^[a-z0-9][_\\.a-z0-9-]+@([a-z0-9][0-9a-z-]+\\.)+([a-z]{2,4})", $mittente)) $errore[] = "L'indirizzo email non è valido.";
if (strlen($oggetto) < 3) $errore[] = "Inserisci un oggetto valido.";

if (count($errore) != 0) {
echo "<b>Si sono verificati degli errori</b><br>";
foreach($errore as $e) {

echo "- $e <br>";
}
exit();
}
$testo = '$testo .

Oggetto: '.$oggetto.'
Mittente: '.$mittente.' ( '.$ip.')
Data: '.$data.'

================

'.$messaggio.'


================
';
if (mail($destinatario, $oggetto, $testo, $mittente)){

echo "Email inviata con successo.<br><br>Verrai reindirizzato al sito $sito tra cinque secondi.";

?>

<script language="Javascript">



window.setTimeout ("location.href=('$sito')", 5000);

</script>

<?



}

else{

     echo "Non è stato possibile inviare l'email.";

}

?>

Il codice sopra postato consiste nell'invio.php.
Analizziamo meglio le parti modificabili(se volete facilitarvi il lavoro per cosa posterò limitatevi a fare Ctrl + F).
Il primo pezzo di codice da modificare è questo:
CODICE
$destinatario = "$mail"; // Indirizzo dove verranno recapitate le email.
$url = "$url"; // Inserisci l'url della pagina a cui verrà redirezionata.

Sembra logico che tra $destinatario = ""; dovete inserire il vostro indirizzo email e tra $url = ""; qualora lo vorreste un redirect ad un vostro sito.
Per eliminarlo rimuovete questa stringa:
CODICE
$url = ""; // Inserisci l'url della pagina a cui verrà redirezionata.

E rimuovete quindi:
CODICE
<script language="Javascript">



window.setTimeout ("location.href=('$sito')", 5000);

</script>

Che consiste nel redirect vero e proprio.
Facciamo prima un piccolo riassunto su quanto detto.
CODICE
<?php



$destinatario = "emailfittizia@tiscali.it"; // Indirizzo dove verranno recapitate le email.
$url = "http://newsboard.forumfree.net/"; // Inserisci l'url della pagina a cui verrà redirezionata.
$oggetto = htmlspecialchars($_POST["oggetto"]);
$mittente = $_POST["tua_email"];
$messaggio = $_POST["messaggio"];
$errore = array();

$ip = $_SERVER['REMOTE_ADDR'];
$data = date("j/m , H:s");
if (!eregi("^[a-z0-9][_\\.a-z0-9-]+@([a-z0-9][0-9a-z-]+\\.)+([a-z]{2,4})", $mittente)) $errore[] = "L'indirizzo email non è valido.";
if (strlen($oggetto) < 3) $errore[] = "Inserisci un oggetto valido.";

if (count($errore) != 0) {
echo "<b>Si sono verificati degli errori</b>
";
foreach($errore as $e) {

echo "- $e
";
}
exit();
}
$testo = '$testo .

Oggetto: '.$oggetto.'
Mittente: '.$mittente.' ( '.$ip.')
Data: '.$data.'

================

'.$messaggio.'


================
';
if (mail($destinatario, $oggetto, $testo, $mittente)){

echo "Email inviata con successo.

Verrai reindirizzato al sito $sito tra cinque secondi.";

?>

<script language="Javascript">



window.setTimeout ("location.href=('http://newsboard.forumfree.net/')", 5000);

</script>

<?



}

else{

echo "Non è stato possibile inviare l'email.";

}

?>

E'possibile modicare inoltre questi due parametri:
CODICE
echo "Email inviata con successo.<br><br>Verrai reindirizzato al sito $sito tra cinque secondi.";

Ed
CODICE
echo "Non è stato possibile inviare l'email.";

Nel primo possiamo,come nel secondo possiamo scriverci tutto cio che vogliamo.
Consiglierei solo di mettere il nome del sito al posto di $sito senza fare ulteriori modifiche al codice.
Per il form invio.php è tutto.
Ora dobbiamo passare ad email.php:
CODICE
<form action="invio.php" method="post" name='REPLIER'>
<table class="skin_tbl_width" cellpadding="0" cellspacing="1"><tr><td><p align="center"><table class="skin_tbl_border" width="100%" cellpadding="4" cellspacing="1"><tr><td class="title" colspan="2">Modulo Email<tr><td class="row1" colspan="2"><b>Invia un'email</b>
<tr><td class="row1" width="20%" valign="top"><b>Tua Email</b><td class="row1" width="80%"><input type="text" name="tua_email" value="" size="50" maxlength="50" class="forminput">
<tr><td class="row1" width="20%" valign="top"><b>Oggetto</b><td class="row1" width="80%"><input type="text" name="oggetto" value="" size="50" maxlength="50" class="forminput"><tr><td class="row1" width="20%" valign="top"><b>Messaggio</b><td class="row1" width="80%"><textarea cols="60" rows="12" wrap="soft" name="messaggio" class="textinput"></textarea><tr><td class="row2" colspan="2" align="center">
<input type="submit" value="Invia email"  onclick="invia()" /></p></form>
<script type="text/javascript">
function invia(){

if(document.REPLIER.oggetto.value==""){
      alert("Non hai inserito l\'oggetto!");
      document.REPLIER.oggetto.focus();
      return;
      }
if(document.REPLIER.tua_email.value==""){
      alert("Inserisci l\'email!");
      document.REPLIER.tua_email.focus();
      return;
      }

}
</script>

Per quest'altro il lavoro è poco,l'unica cosa da modificare è questa:
CODICE
<form action="invio.php" method="post" name='REPLIER'>

Solo nel caso il file dove avete inserito il php si chiami in altro modo altrimenti non toccate nulla.
A fine lavoro dovrebbe venire simile a questo box:www.altobelli.altervista.org/email.php.
L'aspetto grafico però sarà completamente diverso in quanto il css è stato da me aggiunto in seguito.
Per renderlo anche visibilmente migliore basta aggiungere questo codice:
CODICE
<link rel="stylesheet" href="sito" type="text/css" media="screen">

All'inizio di tutti e due i file,sostituendo sito con il sito che sarà utilizzato per catturare il css.
CODICE
<link rel="stylesheet" href="http://newsboard.forumfree.net/" type="text/css" media="screen">

Questo però può essere un metodo molto brutto perchè cattura anche lo sfondo e se esso è un punto che si ripete stonerà anche con le scritte.
Un altra soluzione è quella di copiare il css della skin e inserirlo tramite i due tag
<style> e </style>.
E'consigliato di inserire il link ad un proprio foglio di stile o di inserire una propria dichiarazione di stile.
Naturalmente per chi ha le conoscenze può modificare il codice php e html.

Edited by Craig - 10/10/2007, 07:29
 
Top
view post Posted on 19/11/2007, 17:52
Avatar

Developer

Group:
NB Onorary
Posts:
17,026
Location:
Milano

Status:


Nel form precedente abbiamo visto come effettuare in modo base un box invio email.
Naturalmente, come avevo gia detto, era possibile articolarli nel modo che ci piaceva di più e non avendo nulla da fare in settimana posto qui un codice più elaborato per il form:
HTML
<html>
<head>
<title>Titolo Pagina Web</titolo>
<style>Inserisci lo stile</style>
</head>
<body>
<div>
<?php
require_once('recaptchalib.php'); //--Inclusione della libreria recaptcha

$publickey = "6LeifQAAAAAAAJrNPpNyr_4r5lhVBcXIrLLPikjz"; // you got this from the signup page
$privatekey = "6LeifQAAAAAAAFdwC6buKx7AJjWelNdjwJUbODIm"; // you got this from the signup page

$_destinatario = trim( $_POST["destinatario"] ); // Destinatario della email
$_oggetto = trim( $_POST["oggetto"] ); // Oggetto della email
$_tua_email = trim( $_POST["tua_email"] ); // Email del utente
$_nickname = trim( $_POST["nickname"] ); // Nickname
$_messaggio = trim( $_POST["messaggio"] ); // Messaggio della Email
$_tipo_richiesta = trim( $_POST["tipo_richiesta"] ); // Tipo richiesta da effettuare

if( $_destinatario AND $_oggetto AND $_tua_email AND $_nickname AND $_messaggio AND $_tipo_richiesta AND $_POST["send_form"] ) {


// Controlli Captcha
$resp = recaptcha_check_answer ($privatekey,
$_SERVER["REMOTE_ADDR"],
$_POST["recaptcha_challenge_field"],
$_POST["recaptcha_response_field"]);

if (!$resp->is_valid) {
die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
"(reCAPTCHA said: " . $resp->error . ")");
}


//Controllo Validità della email inserita
$result = eregi("^[_a-z0-9+-]+(\.[_a-z0-9+-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)+$",$_tua_email);
if( ! $result )
die("L'email inserita non è valida");

//Associo al nick degli admin il rispettivo indirizzo email
$choice = array(
"$nick" => "$indirizzo",
);

// Headers di invio
$_headers = "MIME-Version: 1.0\r\n";
$_headers .= "Content-type: text/html; charset=iso-8859-1\r\n";

if( $_destinatario == "all" ) {

do {
$_destinatario .= current($choice) . ", ";
} while(next($choice));

// Headers di invio
$_headers .= "To: $_destinatario <".$_destinatario.">\r\n";
$_headers .= "From: $_nickname <$_tua_email>\r\n";

$mail = @mail( $_destinatario , "[".$_tipo_richiesta."] ".$_oggetto , $_messaggio , $_headers );

}else{

// Headers di invio
$_headers .= "To: $_destinatario <".$choice[ $_destinatario ].">\r\n";
$_headers .= "From: $_nickname <$_tua_email>\r\n";

$mail = @mail( $choice[ $_destinatario ] , "[".$_tipo_richiesta."] ".$_oggetto , $_messaggio , $_headers );

}

// Controllo se la email è stata spedita con successo
if( $mail ) {

//Log dell'invio
$fp = fopen("logs/".date("d-m", time()).".txt", "a+");
fwrite( $fp , date("d-m H:i", time()) . " - Nickname: ".$_nickname." - IP: ".$_SERVER["REMOTE_ADDR"]." - Email: ".$_tua_email." - Ha inviato una mail a ".$_destinatario."\n");
fclose($fp);
echo "Email inviata con successo.";

?>
<?

}else echo "Si è verificato un errore durante l'invio dell'email. <a href=\"".$_SERVER['PHP_SELF']."\">Riprova ad inviare la mail</a><br><br><br><br>.";

}else{

$errore = ""; //Preparo una variabile che contiene i possibili errori per cui la mail non è stata inviata

if( $_POST["send_form"] ) { //Controllo che il form sia già stato inviato

$errore = $_destinatario ? "" : "E' necessario scegliere il destinatario della email<br>\n";
$errore .= $_oggetto ? "" : "E' necessario inserire l'oggetto della email<br>\n";
$errore .= $_tua_email ? "" : "E' necessario inserire una email<br>\n";
$errore .= $_nickname ? "" : "E' necessario inserire un nickname<br>\n";
$errore .= $_messaggio ? "" : "E' necessario inserire un messaggio<br>\n";
$errore .= $_tipo_richiesta ? "" : "E' necessario scegliere il tipo di richiesta<br>\n";

}

//Stampo il modulo
?>

<?php echo $errore; ?><form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="modulo_email"><table class="skin_tbl_width" cellpadding="0" cellspacing="1"><tr><td><p align="center"><table class="skin_tbl_border" width="100%" cellpadding="4" cellspacing="1"><tr><td class="row1" colspan="2" align="center"><b>Modulo Email</b> - <b>Invia un'email</b></td></tr>
<tr><td class="row1" width="20%" valign="top"><b>Destinatario</b></td><td class="row1" width="80%"><select name="destinatario"><option value="Value">Nick</option><option value="Tutti">Tutti</option></select>
</td></tr><tr><td class="row1" width="20%" valign="top"><b>Tua Email</b></td><td class="row1" width="80%"><input type="text" name="tua_email" value="" size="50" maxlength="50" class="forminput"></td></tr><tr><td class="row1" width="20%" valign="top"><b>Nickname</b></td><td class="row1" width="80%"><input type="text" name="nickname" value="" size="50" maxlength="50" class="forminput">
</td></tr><tr><td class="row1" width="20%" valign="top"><b>Oggetto</b></td><td class="row1" width="80%"><input type="text" name="oggetto" value="" size="50" maxlength="50" class="forminput">
</td></tr><tr><td class="row1" width="20%" valign="top"><b>Tipo Richiesta</b></td><td class="row1" width="80%"><select name="tipo_richiesta"><option value="Richiesta affiliazione">Richiesta affiliazione</option><option value="Segnala Abuso">Segnala Abuso</option><option value="Proposte">Proposte</option><option value="Inviti">Inviti</option><option value="Altro">Altro</option></select></td></tr>
<tr><td class="row1" width="20%" valign="top"><b>Messaggio</b></td><td class="row1" width="80%"><textarea cols="60" rows="12" wrap="soft" name="messaggio" class="textinput"></textarea></td></tr><tr><td class="row1" width="100%" align="center" colspan="2"><?php echo recaptcha_get_html($publickey); ?></td></tr><tr><td class="row2" colspan="2" align="center"><input type="hidden" name="send_form" value="1"><button type="submit" onclick="invia()">Invia email</button> <button type="reset">Reset</button></td></tr></table></p></td></tr></table></form>
<script type="text/javascript">
function invia(){ if(document.moduloemail.oggetto.value==""){ alert("Non hai inserito l\'oggetto!"); document.modulo_email.oggetto.focus(); return false; } if(document.modulo_email.tua_email.value==""){ alert("Inserisci l\'email!"); document.modulo_email.tua_email.focus(); return false; } if(document.modulo_email.nickname.value==""){ alert("Inserisci il tuo nickname!"); document.modulo_email.nickname.focus(); return false; } if(document.modulo_email.messaggio.value==""){ alert("Inserisci il messaggio!"); document.modulo_email.messaggio.focus(); return false; } if(document.modulo_email.recaptcha_challenge_field.value==""){ alert("Non hai inserito le due parole di controllo!"); document.modulo_email.recaptcha_challenge_field.focus(); return false; } } </script>
<?php
}
?>
</div>
</body>
</html>

Analizziamo la struttura di questo form:
Inanzitutto le parti da modificare sono poche e le prime sono molto elementari:
HTML
<title>Titolo Pagina Web</titolo>
<style>Inserisci lo stile</style>

Tra il tag <title> e la sua chiusura potrete inserire il titolo della pagina ( mi sembra ovvio no? ) e tra i tag <style> il vostro foglio di stile che andrà a dare l'aspetto grafico all'intero box.
Il prossimo valore è sicuramente questo:
CODICE
"$nick"           => "$indirizzo",

Il quale consiste nell'elencazione dei vari parametri nick ed email a cui recapitare la posta elettronica.
Mi sembra ovvio che l'indirizzo email debba essere funzionante e che per aggiungere nuovi campi vi basterà ripetere la stringa precedente:
CODICE
$choice = array(
                "$nick"           => "$indirizzo",
                "$nick"           => "$indirizzo",
                "$nick"           => "$indirizzo",
              );

Questo è solo un esempio, potrete inserire quanti nick e indirizzi vi pare.
Con il php per adesso abbiamo terminato.
Passiamo all'Html, la parte meno complicata sotto un aspetto.
HTML
<td class="row1" width="80%"><select name="destinatario"><option value="Value">Nick</option><option value="Tutti">Tutti</option></select>

Da modificare è soprattutto questa parte qua:
HTML
<option value="Value">Nick</option>

Sostituendo Value con il nome che avete dato ad $nick nelle funzioni php.
Un esempio pratico:
Se io inserisco:
CODICE
$choice = array(
                "kostaki"           => "emailfittizia@tiscali.it",
              );

Nell'opzione mostrata precedentemente debbo andare a scrivere così:
HTML
<option value="kostaki">Kostaki</option>

Il campo value, a differenza di quello nick, non può essere modificato perchè come posso scrivere:
HTML
<option value="kostaki">Kostaki puzza</option>

Non potrei scrivere:
HTML
<option value="Kostaki puzza">kostaki</option>

Sintassi del tutto sbagliata.
Mi pare ovvio che da questo passo potiate inserire il maggior numero di nick in base agli indirizzi email immessi nel campo precedente.
La funzione che vedete di fianco al value è la funzione tutti, una sorta di newsletter inviata ad ogni indirizzo email presente nella lista.
Ultima parte da modificare è questa:
HTML
<b>Tipo Richiesta</b></td><td class="row1" width="80%"><select name="tipo_richiesta"><option value="Richiesta affiliazione">Richiesta affiliazione</option><option value="Segnala Abuso">Segnala Abuso</option><option value="Proposte">Proposte</option><option value="Inviti">Inviti</option><option value="Altro">Altro</option></select>

Che consiste nell'elencazione di tutti i tipi di richiesta.
Alla fine, se avrete seguito tutte le istruzioni, il risultato dovrebbe essere come questo: http://www.altobelli.helloweb.eu/?act=email .
Solo una cosa mancherà che sarà il recaptcha che consiste in un grande sistema antispam utilizzato anche da forumfree.
Per attivarlo dovrete registrarvi sul loro sito:
http://recaptcha.net/
E inserire delle particolari chiavi che vi verranno date in base ai domini che sceglierete.
Quello che elencherò è per helloweb ed il file si chiamerà recaptchalib.php:
SPOILER (click to view)
HTML
<?php
/*
* This is a PHP library that handles calling reCAPTCHA.
* - Documentation and latest version
* http://recaptcha.net/plugins/php/
* - Get a reCAPTCHA API Key
* http://recaptcha.net/api/getkey
* - Discussion group
* http://groups.google.com/group/recaptcha
*
* Copyright (c) 2007 reCAPTCHA -- http://recaptcha.net
* AUTHORS:
* Mike Crawford
* Ben Maurer
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/

/**
* The reCAPTCHA server URL's
*/
define("RECAPTCHA_API_SERVER", "http://api.recaptcha.net");
define("RECAPTCHA_API_SECURE_SERVER", "https://api-secure.recaptcha.net");
define("RECAPTCHA_VERIFY_SERVER", "api-verify.recaptcha.net");

/**
* Encodes the given data into a query string format
* @param $data - array of string elements to be encoded
* @return string - encoded request
*/
function _recaptcha_qsencode ($data) {
$req = "";
foreach ( $data as $key => $value )
$req .= $key . '=' . urlencode( stripslashes($value) ) . '&';

// Cut the last '&'
$req=substr($req,0,strlen($req)-1);
return $req;
}



/**
* Submits an HTTP POST to a reCAPTCHA server
* @param string $host
* @param string $path
* @param array $data
* @param int port
* @return array response
*/
function _recaptcha_http_post($host, $path, $data, $port = 80) {

$req = _recaptcha_qsencode ($data);

$http_request = "POST $path HTTP/1.0\r\n";
$http_request .= "Host: $host\r\n";
$http_request .= "Content-Type: application/x-www-form-urlencoded;\r\n";
$http_request .= "Content-Length: " . strlen($req) . "\r\n";
$http_request .= "User-Agent: reCAPTCHA/PHP\r\n";
$http_request .= "\r\n";
$http_request .= $req;

$response = '';
if( false == ( $fs = @fsockopen($host, $port, $errno, $errstr, 10) ) ) {
die ('Could not open socket');
}

fwrite($fs, $http_request);

while ( !feof($fs) )
$response .= fgets($fs, 1160); // One TCP-IP packet
fclose($fs);
$response = explode("\r\n\r\n", $response, 2);

return $response;
}



/**
* Gets the challenge HTML (javascript and non-javascript version).
* This is called from the browser, and the resulting reCAPTCHA HTML widget
* is embedded within the HTML form it was called from.
* @param string $pubkey A public key for reCAPTCHA
* @param string $error The error given by reCAPTCHA (optional, default is null)
* @param boolean $use_ssl Should the request be made over ssl? (optional, default is false)

* @return string - The HTML to be embedded in the user's form.
*/
function recaptcha_get_html ($pubkey, $error = null, $use_ssl = false)
{
if ($pubkey == null || $pubkey == '') {
die ("To use reCAPTCHA you must get an API key from <a href='http://recaptcha.net/api/getkey'>http://recaptcha.net/api/getkey</a>");
}

if ($use_ssl) {
$server = RECAPTCHA_API_SECURE_SERVER;
} else {
$server = RECAPTCHA_API_SERVER;
}

$errorpart = "";
if ($error) {
$errorpart = "&amp;error=" . $error;
}
return '<script type="text/javascript" src="'. $server . '/challenge?k=' . $pubkey . $errorpart . '"></script>

<noscript>
<iframe src="'. $server . '/noscript?k=' . $pubkey . $errorpart . '" height="300" width="500" frameborder="0"></iframe><br>
<textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
<input type="hidden" name="recaptcha_response_field" value="manual_challenge">
</noscript>';
}




/**
* A ReCaptchaResponse is returned from recaptcha_check_answer()
*/
class ReCaptchaResponse {
var $is_valid;
var $error;
}


/**
* Calls an HTTP POST function to verify if the user's guess was correct
* @param string $privkey
* @param string $remoteip
* @param string $challenge
* @param string $response
* @return ReCaptchaResponse
*/
function recaptcha_check_answer ($privkey, $remoteip, $challenge, $response)
{
if ($privkey == null || $privkey == '') {
die ("To use reCAPTCHA you must get an API key from <a href='http://recaptcha.net/api/getkey'>http://recaptcha.net/api/getkey</a>");
}

if ($remoteip == null || $remoteip == '') {
die ("For security reasons, you must pass the remote ip to reCAPTCHA");
}



//discard spam submissions
if ($challenge == null || strlen($challenge) == 0 || $response == null || strlen($response) == 0) {
$recaptcha_response = new ReCaptchaResponse();
$recaptcha_response->is_valid = false;
$recaptcha_response->error = 'incorrect-captcha-sol';
return $recaptcha_response;
}

$response = _recaptcha_http_post (RECAPTCHA_VERIFY_SERVER, "/verify",
array (
'privatekey' => $privkey,
'remoteip' => $remoteip,
'challenge' => $challenge,
'response' => $response
)
);

$answers = explode ("\n", $response [1]);
$recaptcha_response = new ReCaptchaResponse();

if (trim ($answers [0]) == 'true') {
$recaptcha_response->is_valid = true;
}
else {
$recaptcha_response->is_valid = false;
$recaptcha_response->error = $answers [1];
}
return $recaptcha_response;

}

/**
* gets a URL where the user can sign up for reCAPTCHA. If your application
* has a configuration page where you enter a key, you should provide a link
* using this function.
* @param string $domain The domain where the page is hosted
* @param string $appname The name of your application
*/
function recaptcha_get_signup_url ($domain = null, $appname = null) {
return "http://recaptcha.net/api/getkey?" . _recaptcha_qsencode (array ('domain' => $domain, 'app' => $appname));
}

function _recaptcha_aes_pad($val) {
$block_size = 16;
$numpad = $block_size - (strlen ($val) % $block_size);
return str_pad($val, strlen ($val) + $numpad, chr($numpad));
}

/* Mailhide related code */

function _recaptcha_aes_encrypt($val,$ky) {
if (! function_exists ("mcrypt_encrypt")) {
die ("To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed.");
}
$mode=MCRYPT_MODE_CBC;
$enc=MCRYPT_RIJNDAEL_128;
$val=_recaptcha_aes_pad($val);
return mcrypt_encrypt($enc, $ky, $val, $mode, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
}


function _recaptcha_mailhide_urlbase64 ($x) {
return strtr(base64_encode ($x), '+/', '-_');
}

/* gets the reCAPTCHA Mailhide url for a given email, public key and private key */
function recaptcha_mailhide_url($pubkey, $privkey, $email) {
if ($pubkey == '' || $pubkey == null || $privkey == "" || $privkey == null) {
die ("To use reCAPTCHA Mailhide, you have to sign up for a public and private key, " .
"you can do so at <a href='http://mailhide.recaptcha.net/apikey'>http://mailhide.recaptcha.net/apikey</a>");
}


$ky = pack('H*', $privkey);
$cryptmail = _recaptcha_aes_encrypt ($email, $ky);

return "http://mailhide.recaptcha.net/d?k=" . $pubkey . "&c=" . _recaptcha_mailhide_urlbase64 ($cryptmail);
}

/**
* gets the parts of the email to expose to the user.
* eg, given johndoe@example,com return ["john", "example.com"].
* the email is then displayed as john...@example.com
*/
function _recaptcha_mailhide_email_parts ($email) {
$arr = preg_split("/@/", $email );

if (strlen ($arr[0]) <= 4) {
$arr[0] = substr ($arr[0], 0, 1);
} else if (strlen ($arr[0]) <= 6) {
$arr[0] = substr ($arr[0], 0, 3);
} else {
$arr[0] = substr ($arr[0], 0, 4);
}
return $arr;
}

/**
* Gets html to display an email address given a public an private key.
* to get a key, go to:
*
* http://mailhide.recaptcha.net/apikey
*/
function recaptcha_mailhide_html($pubkey, $privkey, $email) {
$emailparts = _recaptcha_mailhide_email_parts ($email);
$url = recaptcha_mailhide_url ($pubkey, $privkey, $email);

return htmlentities($emailparts[0]) . "<a href='" . htmlentities ($url) .
"'
onclick=\"window.open('" . htmlentities ($url) . "', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;\" title=\"Reveal this e-mail address\"
>
...</a>@" . htmlentities ($emailparts [1]);

}


?>

Una volta fatti entrambi i processi, uppato i file e sistemato tutto il risultato dovrebbe essere identico a quello della pagina linkata precedentemente.
Naturalmente, come nella vecchia versione, potrete modificare lo script in base alle vostre conoscenze nel campo.
 
Top
1 replies since 9/10/2007, 14:16   4736 views
  Share