Hi Every one,

I am really new to PHP. But I have an assignment which is to be completed shortly. I will be much greatful if any one could help me out and donating me some of the code form his/her precious knowledge.

My problem is.

If I send an email to any one for example anyone@yahoo.com or anyone@hotmail.com or may be some other mail address and whenever my mail is read. I need a notification with following information.

  1. The Local IP Address of the computer if on networkd
  2. IP address of proxy server
  3. IP address of ISP
  4. Date and Time at which the mail was read

Breifly, I need all the IP addresses through which that person connected to internet and checked my mail.

Notification may be a return mail or save all of the above information on an online database. Please advise

Thanks a lot in advance.

Bilal

    Hi Every one,

    I am really new to PHP. But I have an assignment which is to be completed shortly. I will be much greatful if any one could help me out and donating me some of the code form his/her precious knowledge.

    My problem is.

    If I send an email to any one for example anyone@yahoo.com or anyone@hotmail.com or may be some other mail address and whenever my mail is read. I need a notification with following information.

    1. The Local IP Address of the computer if on networkd
    2. IP address of proxy server
    3. IP address of ISP
    4. Date and Time at which the mail was read

    Breifly, I need all the IP addresses through which that person connected to internet and checked my mail.

    Notification may be a return mail or save all of the above information on an online database. Please advise

    Thanks a lot in advance.

    Bilal

      Hi Every one,

      I am really new to PHP. But I have an assignment which is to be completed shortly. I will be much greatful if any one could help me out and donating me some of the code form his/her precious knowledge.

      My problem is.

      If I send an email to any one for example anyone@yahoo.com or anyone@hotmail.com or may be some other mail address and whenever my mail is read. I need a notification with following information.

      1. The Local IP Address of the computer if on networkd
      2. IP address of proxy server
      3. IP address of ISP
      4. Date and Time at which the mail was read

      Breifly, I need all the IP addresses through which that person connected to internet and checked my mail.

      Notification may be a return mail or save all of the above information on an online database. Please advise

      Thanks a lot in advance.

      Bilal

        Hi Every one,

        I am really new to PHP. But I have an assignment which is to be completed shortly. I will be much greatful if any one could help me out and donating me some of the code form his/her precious knowledge.

        My problem is.

        If I send an email to any one for example anyone@yahoo.com or anyone@hotmail.com or may be some other mail address and whenever my mail is read. I need a notification with following information.

        1. The Local IP Address of the computer if on networkd
        2. IP address of proxy server
        3. IP address of ISP
        4. Date and Time at which the mail was read

        Breifly, I need all the IP addresses through which that person connected to internet and checked my mail.

        Notification may be a return mail or save all of the above information on an online database. Please advise

        Thanks a lot in advance.

        Bilal

          Hi Every one,

          I am really new to PHP. But I have an assignment which is to be completed shortly. I will be much greatful if any one could help me out and donating me some of the code form his/her precious knowledge.

          My problem is.

          If I send an email to any one for example anyone@yahoo.com or anyone@hotmail.com or may be some other mail address and whenever my mail is read. I need a notification with following information.

          1. The Local IP Address of the computer if on networkd
          2. IP address of proxy server
          3. IP address of ISP
          4. Date and Time at which the mail was read

          Breifly, I need all the IP addresses through which that person connected to internet and checked my mail.

          Notification may be a return mail or save all of the above information on an online database. Please advise

          Thanks a lot in advance.

          Bilal

            You can't specifically do what you are trying to do. Read up on what email is and how it works and you will understand why.

            You could embed a graphic in an html email that would cause a connection to your server. Lots of spam uses this sort of technique or many variants. Most spam filters and spyware filters try to stop this sort of thing. Any email you send that had code like this would likely be blocked.

              Hi Every one,

              I am really new to PHP. But I have an assignment which is to be completed shortly. I will be much greatful if any one could help me out and donating me some of the code form his/her precious knowledge.

              My problem is.

              If I send an email to any one for example anyone@yahoo.com or anyone@hotmail.com or may be some other mail address and whenever my mail is read. I need a notification with following information.

              1. The Local IP Address of the computer if on networkd
              2. IP address of proxy server
              3. IP address of ISP
              4. Date and Time at which the mail was read

              Breifly, I need all the IP addresses through which that person connected to internet and checked my mail.

              Notification may be a return mail or save all of the above information on an online database. Please advise

              Thanks a lot in advance.

              Bilal

                How about something simple like this...

                $msg = '
                $ip = $REMOTE_ADDR;
                $datetime = date("Y-m-d H:i:s");
                ';

                $to = 'whoever@whoville.com;
                $mailheaders = 'From: john@doe.com';
                $mailheaders2 = '-F john@doe.com';
                mail($to, $subject, $msg, $mailheaders, $mailheaders2);

                $to = 'anotherwho@whoville.com';
                $subject = 'Your subject';
                $mailheaders = 'From: john@doe.com';
                $mailheaders2 = '-F john@doe.com';
                mail($to, $subject, $msg, $mailheaders, $mailheaders2);

                KidGeek

                  Hi Every one,

                  I am really new to PHP. But I have an assignment which is to be completed shortly. I will be much greatful if any one could help me out and donating me some of the code form his/her precious knowledge.

                  My problem is.

                  If I send an email to any one for example anyone@yahoo.com or anyone@hotmail.com or may be some other mail address and whenever my mail is read. I need a notification with following information.

                  1. The Local IP Address of the computer if on networkd
                  2. IP address of proxy server
                  3. IP address of ISP
                  4. Date and Time at which the mail was read

                  Breifly, I need all the IP addresses through which that person connected to internet and checked my mail.

                  Notification may be a return mail or save all of the above information on an online database. Please advise

                  Thanks a lot in advance.

                  Bilal

                    ahh notification junk... nope can't do that...

                    But you could have a page link they click on in the email and then collect the info that way...

                    So the link would be like...

                    index.php?email=john@doe.com

                    when they open that link, you could collect the email address, ip address and so forth...

                    But they would have to click the link...

                      Dont post across multiple forums. Someone will anwser you eventually.

                      Anyways try doing a search, this topic has come up before.

                        Do you really have to post this in EVERY SINGLE forum? :glare:

                          This is not a cheap easy stop where you can get people to do your homework for you!:mad:

                          Provide your code and we'll be happy to take a look at it and give our view but we're not going to do your homework for you!

                          To be honest I'm pretty disgusted that you'd even consider just asking for code rather than doing it yourself. I'm sure you don't give a shit about me but I don't care so I'm going to go ahead and tell you exactly why I find it so abhorant.

                          I didn't have the luxury of a brilliant education where they tought me how all the ins and outs of programming. You obviously do if you're being set assignments like that. I had to settle with a solid A-level in Maths and an HND in computing (virtually no programming at all) and then an absolute fuck load of reading, practicing my skills, more reading, more practicing my skills. Stick that last sentance in a recursive function with virtually no free time for about three years and you'll have a rough idea about how hard I've worked for the knowledge I've got. I'm certain many of the other people on this board have the same kind of history. So I'm sure you can understand why when some little cockshite (I'm sorry I don't like you already, you're going to have some work to get into my good books) comes along and asks me to do his homework for him I'm a little pissed off.

                          All I have to say to you is go away and do what college is there for, learn!

                            Please don't cross post your question... It's one thing if you aren't sure between one or two boards, which one is more applicable, but you blasted this question to every board?!? Good luck in finding anyone here to have any kind of sympathy for you, and are willing to do your work for you. My personal vibe is this: Since you didn't bother to do ANY kind of searching, and have absolutely no ettiquette whatsoever, then you can do it yourself...

                            P.S. I'l give you a hint. The only way to retrieve that type of information is through viral scripting in the email, or to provide a link for the user to click on. Either way, my Barracuda SPAM Gateway Firewall would block your email anyhow... and I'm sure there are a lot of other people out there who wouldn't take too kindly to that type of intrusion in their inbox.

                              We can tell you're really new to PHP. In fact, we can tell you're really new to this whole "Intraweb" thingy. Anyone with any experience would have known that what you just did was incredibly rude in several different ways. You blasted every forum - relevant or not - with your post; you have apparently done no work yourself yet; you haven't made any searches yourself; you haven't read the FAQs ... I could go on, but I don't need to, because these things have already been covered, but since you're yet to learn the basics of etiquette you'll need them pointed out to you.

                              http://www.phpbuilder.com/board/showthread.php?s=&threadid=10218925
                              http://www.phpbuilder.com/board/showthread.php?s=&postid=10453970#post10453970

                                We can tell you're really new to PHP. In fact, we can tell you're really new to this whole "Intraweb" thingy. Anyone with any experience would have known that what you just did was incredibly rude in several different ways. You blasted every forum - relevant or not - with your post; you have apparently done no work yourself yet; you haven't made any searches yourself; you haven't read the FAQs ... I could go on, but I don't need to, because these things have already been covered, but since you're yet to learn the basics of etiquette you'll need them pointed out to you.

                                http://www.phpbuilder.com/board/showthread.php?s=&threadid=10218925
                                http://www.phpbuilder.com/board/showthread.php?s=&postid=10453970#post10453970

                                  We can tell you're really new to PHP. In fact, we can tell you're really new to this whole "Intraweb" thingy. Anyone with any experience would have known that what you just did was incredibly rude in several different ways. You blasted every forum - relevant or not - with your post; you have apparently done no work yourself yet; you haven't made any searches yourself; you haven't read the FAQs ... I could go on, but I don't need to, because these things have already been covered, but since you're yet to learn the basics of etiquette you'll need them pointed out to you.

                                  http://www.phpbuilder.com/board/showthread.php?s=&threadid=10218925
                                  http://www.phpbuilder.com/board/showthread.php?s=&postid=10453970#post10453970

                                    We can tell you're really new to PHP. In fact, we can tell you're really new to this whole "Intraweb" thingy. Anyone with any experience would have known that what you just did was incredibly rude in several different ways. You blasted every forum - relevant or not - with your post; you have apparently done no work yourself yet; you haven't made any searches yourself; you haven't read the FAQs ... I could go on, but I don't need to, because these things have already been covered, but since you're yet to learn the basics of etiquette you'll need them pointed out to you.

                                    http://www.phpbuilder.com/board/showthread.php?s=&threadid=10218925
                                    http://www.phpbuilder.com/board/showthread.php?s=&postid=10453970#post10453970

                                      We can tell you're really new to PHP. In fact, we can tell you're really new to this whole "Intraweb" thingy. Anyone with any experience would have known that what you just did was incredibly rude in several different ways. You blasted every forum - relevant or not - with your post; you have apparently done no work yourself yet; you haven't made any searches yourself; you haven't read the FAQs ... I could go on, but I don't need to, because these things have already been covered, but since you're yet to learn the basics of etiquette you'll need them pointed out to you.

                                      http://www.phpbuilder.com/board/showthread.php?s=&threadid=10218925
                                      http://www.phpbuilder.com/board/showthread.php?s=&postid=10453970#post10453970

                                        We can tell you're really new to PHP. In fact, we can tell you're really new to this whole "Intraweb" thingy. Anyone with any experience would have known that what you just did was incredibly rude in several different ways. You blasted every forum - relevant or not - with your post; you have apparently done no work yourself yet; you haven't made any searches yourself; you haven't read the FAQs ... I could go on, but I don't need to, because these things have already been covered, but since you're yet to learn the basics of etiquette you'll need them pointed out to you.

                                        http://www.phpbuilder.com/board/showthread.php?s=&threadid=10218925
                                        http://www.phpbuilder.com/board/showthread.php?s=&postid=10453970#post10453970