PHPIndex

This page lists files in the current directory. You can view content, get download/execute commands for Wget, Curl, or PowerShell, or filter the list using wildcards (e.g., `*.sh`).

email_newItem.php
wget 'https://lists2.roe3.org/swapshop/emails/email_newItem.php'
View Content
<?php
	include_once('../admin/config.php');
	include_once($languageFile);
	
	$headers = 'From: ' . $emailAdmin . "\r\n" .
   'Reply-To: ' . $emailAdmin . "\r\n" .
   'X-Mailer: PHP/' . phpversion();	
	// Email Content
	$message = STR_ONELASTSTEP;
	$message .= $urlPath  . "/action.php?a=confirm&cp=".$confirmPassword;
	$message .= STR_DONTTHROWTHISMAIL;
	$message .= STR_POSTINGFULLFILLED;
	$message .= STR_STILLACTIVITY;
	$message .= STR_TODEACTIVATEPOSTING;
	$message .= $urlPath  . "/action.php?a=deact&cp=".$confirmPassword . "\n\n";
	$message .= STR_TODELETEPOSTING;
	$message .= $urlPath  . "/action.php?a=delete&cp=".$confirmPassword;
?>
email_reminder.php
wget 'https://lists2.roe3.org/swapshop/emails/email_reminder.php'
View Content
<?php
include_once('../admin/config.php');
include_once($languageFile);

// This file is used when a user has a post, there is a link that will 
// send a reminder email to themselves so they can delete post.

   $headers = 'From: ' . $emailAdmin . "\r\n" .
   'Reply-To: ' . $emailAdmin . "\r\n" .
   'X-Mailer: PHP/' . phpversion();	

	// Email Content
	$message .= STR_IFYOURPOSTING;
	$message .= STR_BUTSTILL;
	$message .= STR_TODEACTIVATE;
	$message .= $urlPath  . "/action.php?a=deact&cp=".$confirmPassword . "\n\n";
	$message .= STR_TODELETE;
	$message .= $urlPath  . "/action.php?a=delete&cp=".$confirmPassword ;
	$message .= STR_IPREQUESTED . GetHostByName($_SERVER['REMOTE_ADDR']);
?>