mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 12:48:24 +01:00
230 lines
5.4 KiB
PHP
230 lines
5.4 KiB
PHP
<?php
|
|
/*
|
|
+ ----------------------------------------------------------------------------+
|
|
| e107 website system
|
|
|
|
|
| ©Steve Dunstan 2001-2002
|
|
| http://e107.org
|
|
| jalist@e107.org
|
|
|
|
|
| Released under the terms and conditions of the
|
|
| GNU General Public License (http://gnu.org).
|
|
|
|
|
| $Source: /cvs_backup/e107_0.8/email.php,v $
|
|
| $Revision: 1.1.1.1 $
|
|
| $Date: 2006-12-02 04:33:03 $
|
|
| $Author: mcfly_e107 $
|
|
+----------------------------------------------------------------------------+
|
|
*/
|
|
require_once("class2.php");
|
|
require_once(HEADERF);
|
|
|
|
$use_imagecode = FALSE;
|
|
$imgtypes = array("jpeg", "png", "gif");
|
|
foreach($imgtypes as $t)
|
|
{
|
|
if(function_exists("imagecreatefrom".$t))
|
|
{
|
|
$use_imagecode = TRUE;
|
|
}
|
|
}
|
|
|
|
if ($use_imagecode)
|
|
{
|
|
require_once(e_HANDLER."secure_img_handler.php");
|
|
$sec_img = new secure_image;
|
|
}
|
|
|
|
$qs = explode(".", e_QUERY, 2);
|
|
if ($qs[0] == "")
|
|
{
|
|
header("location:".e_BASE."index.php");
|
|
exit;
|
|
}
|
|
$source = $qs[0];
|
|
$parms = $qs[1];
|
|
|
|
$emailurl = ($source == "referer") ? $_SERVER['HTTP_REFERER'] : SITEURL;
|
|
|
|
$comments = $tp->post_toHTML($_POST['comment'], TRUE, 'retain_nl emotes_off no_make_clickable');
|
|
$author = $tp->post_toHTML($_POST['author_name'],FALSE,"emotes_off, no_make_clickable");
|
|
$email_send = check_email($_POST['email_send']);
|
|
|
|
|
|
if (isset($_POST['emailsubmit']))
|
|
{
|
|
if (!$email_send)
|
|
{
|
|
$error .= LAN_EMAIL_106;
|
|
}
|
|
|
|
if($use_imagecode)
|
|
{
|
|
if(!isset($_POST['code_verify']) || !isset($_POST['rand_num']))
|
|
{
|
|
header("location:".e_BASE."index.php");
|
|
exit;
|
|
}
|
|
if (!$sec_img->verify_code($_POST['rand_num'], $_POST['code_verify']))
|
|
{
|
|
header("location:".e_BASE."index.php");
|
|
exit;
|
|
}
|
|
}
|
|
|
|
if ($comments == "")
|
|
{
|
|
$message = LAN_EMAIL_188." ".SITENAME." (".SITEURL.")";
|
|
if (USER == TRUE)
|
|
{
|
|
$message .= "\n\n".LAN_EMAIL_1." ".USERNAME;
|
|
}
|
|
else
|
|
{
|
|
$message .= "\n\n".LAN_EMAIL_1." ".$author;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$message .= $comments;
|
|
}
|
|
$ip = $e107->getip();
|
|
$message .= "\n\n".LAN_EMAIL_2." ".$ip."\n\n";
|
|
|
|
if(strpos($source,'plugin:') !== FALSE)
|
|
{
|
|
$plugin = substr($source,7);
|
|
$text = "";
|
|
if(file_exists(e_PLUGIN.$plugin."/e_emailprint.php"))
|
|
{
|
|
include_once(e_PLUGIN.$plugin."/e_emailprint.php");
|
|
$text = email_item($parms);
|
|
$emailurl = SITEURL;
|
|
}
|
|
if($text == "")
|
|
{
|
|
header("location:".e_BASE."index.php");
|
|
exit;
|
|
}
|
|
$message .= $text;
|
|
}
|
|
elseif($source == "referer")
|
|
{
|
|
if(!isset($_POST['referer']) || $_POST['referer'] == '')
|
|
{
|
|
header("location:".e_BASE."index.php");
|
|
exit;
|
|
}
|
|
$message .= $_POST['referer'];
|
|
$emailurl = $_POST['referer'];
|
|
}
|
|
else
|
|
{
|
|
|
|
$emailurl = $_POST['referer'];
|
|
$message = "";
|
|
if($sql->db_Select("news", "*", "news_id='".intval($parms)."'"))
|
|
{
|
|
list($news_id, $news_title, $news_body, $news_extended, $news_datestamp, $news_author, $news_source, $news_url, $news_category, $news_allow_comments) = $sql->db_Fetch();
|
|
$message = "<h3 class='email_heading'>".$news_title."</h3><br />".$news_body."<br />".$news_extended."<br /><br /><a href='{e_BASE}news.php?extend.".$parms."'>{e_BASE}news.php?extend.".$parms."</a><br />";
|
|
$message = $tp->toEmail($message);
|
|
|
|
}
|
|
|
|
if($message == "")
|
|
{
|
|
header("location:".e_BASE."index.php");
|
|
exit;
|
|
}
|
|
}
|
|
|
|
if ($error == "")
|
|
{
|
|
|
|
// Load Mail Handler and Email Template.
|
|
require_once(e_HANDLER."mail.php");
|
|
$email_body = $EMAIL_HEADER;
|
|
$email_body .= (trim($comments) != "") ? $tp->toEmail($comments)."<hr />" : "";
|
|
$email_body .= $tp->toEmail($message).$EMAIL_FOOTER;
|
|
|
|
if (sendemail($email_send, LAN_EMAIL_3.SITENAME,$email_body))
|
|
{
|
|
$text = "<div style='text-align:center'>".LAN_EMAIL_10." ".$email_send."</div>";
|
|
}
|
|
else
|
|
{
|
|
$text = "<div style='text-align:center'>".LAN_EMAIL_9."</div>";
|
|
}
|
|
$ns->tablerender(LAN_EMAIL_11, $text);
|
|
}
|
|
else
|
|
{
|
|
$ns->tablerender(LAN_EMAIL_12, "<div style='text-align:center'>".$error."</div>");
|
|
}
|
|
}
|
|
|
|
|
|
// --------------------- Form -------------------------------------------------
|
|
|
|
|
|
|
|
$text = "<form method='post' action='".e_SELF."?".e_QUERY."'>\n
|
|
<table>";
|
|
|
|
if (USER != TRUE)
|
|
{
|
|
$text .= "<tr>
|
|
<td style='width:25%'>".LAN_EMAIL_15."</td>
|
|
<td style='width:75%'>
|
|
<input class='tbox' type='text' name='author_name' size='60' style='width:95%' value='$author' maxlength='100' />
|
|
</td>
|
|
</tr>";
|
|
}
|
|
|
|
$text .= "
|
|
<tr>
|
|
<td style='width:25%'>".LAN_EMAIL_8."</td>
|
|
<td style='width:75%'>
|
|
<textarea class='tbox' name='comment' cols='70' rows='4' style='width:95%'>".LAN_EMAIL_6." ".SITENAME." (".$emailurl.")
|
|
";
|
|
|
|
if (USER == TRUE)
|
|
{
|
|
$text .= "\n\n".LAN_EMAIL_1." ".USERNAME;
|
|
}
|
|
|
|
$text .= "</textarea>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td style='width:25%'>".LAN_EMAIL_187."</td>
|
|
<td style='width:75%'>
|
|
<input class='tbox' type='text' name='email_send' size='60' value='$email_send' style='width:95%' maxlength='100' />
|
|
</td>
|
|
</tr>
|
|
";
|
|
|
|
if($use_imagecode)
|
|
{
|
|
$text .= "<tr><td>".LAN_EMAIL_190."</td><td>";
|
|
$text .= $sec_img->r_image();
|
|
$text .= " <input class='tbox' type='text' name='code_verify' size='15' maxlength='20' />
|
|
<input type='hidden' name='rand_num' value='".$sec_img->random_number."' /></td></tr>";
|
|
}
|
|
|
|
$text .= "
|
|
<tr style='vertical-align:top'>
|
|
<td style='width:25%'></td>
|
|
<td style='width:75%'>
|
|
<input class='button' type='submit' name='emailsubmit' value='".LAN_EMAIL_4."' />
|
|
<input type='hidden' name='referer' value='".$_SERVER['HTTP_REFERER']."' />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>";
|
|
|
|
$ns->tablerender(LAN_EMAIL_5, $text);
|
|
|
|
require_once(FOOTERF);
|
|
?>
|