Well there goes my idea of making my own E-Mail Receiver/Sender like Outlook, with Mail Receipt feature (Though I know there are some on the net).

Here is how I wanted to do this...
The mail will be sent like this.
Dear ABC
This is the user's mail
-XYZ

The following added automatically by Mail Receipt
************
Mail Receipt
************
This form was generated by Mail Receipt.
Please Click 'Send Receipt' to send notification
----------------
|Sender's Mail |
----------------
----------------
| Send Receipt |
----------------
'Sender's Mail' is a TextBox & 'Send Receipt' would have been a push button and the form would have been created though the following code... (not perfect)
Code:
<html>
<body>
<form method="POST" action="--WEBBOT-SELF--">
<!--webbot bot="SaveResults" S-Label-Fields="TRUE" S-Email-Address="[email protected]" S-Email-Format="TEXT/PRE" -->
  <p><input type="text" name="T1" size="20"></p>
  <p><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
</body>
</html>
[email protected] would be replaced by the sender's e-mail and the text box would have had the value of the sender's e-mail.

Hence if the viewer is checking his mail from a browser, he simply needs to click the push button. (Would not take more than 2 seconds).
And if the mail is seen through my outlook like program, then my program would check for...
************
Mail Receipt
************
and show the mail upto this part and not the form. It would have however gone through the form, got the sender's e-mail id and send him a mail.

Well got to think of something else