diff php/read/sendToFriend.php @ 6:077b0a0a3e6d

remaining originals according to dependency walk
author Robert Boland <robert@markup.co.uk>
date Thu, 16 Feb 2017 22:29:02 +0000
parents
children 385ddd7c4b55 a67bf725e87b
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/php/read/sendToFriend.php	Thu Feb 16 22:29:02 2017 +0000
@@ -0,0 +1,36 @@
+<?PHP
+
+if( !empty($_POST) ){
+
+	include "../../../private/db.php";  
+
+	//echo $_POST["xml"];
+	//echo print_r($_POST);
+	$xml = new SimpleXMLElement(stripslashes($_POST["xml"]));
+	
+	$email = $xml->Email;
+	$firstName = $xml->Firstname;
+	$surname = $xml->Surname;
+	
+	$url = $xml->Url;
+	$msg = $xml->Message;
+	
+	$note = "";
+	if($msg != "")
+	{
+		$note = "------\nNote from $firstName $surname:\n$msg\n------";
+	}
+	
+	$message = "$firstName $surname spotted some book recommendations on YourNextRead.com and thought you should see them.\nHave a look at: $url\n$note";
+
+	$header="from: YourNextRead <noreply@YourNextRead.com>\nContent-Type: text/plain; charset=iso-8859-1";
+	$to=$email;
+	$subject="[From: $firstName $surname] Book recommendations from YourNextRead...";
+	$sentmail = mail($to,$subject,$message,$header);
+}
+else
+{
+	echo "Empty Post";
+}
+
+?>
\ No newline at end of file