• 0

Quick PHP Question


Question

I would like to automatically send an e-mail whenever someone from a certain host visits my site.

I know the IPs I'd like to use. Pretty much it'd be like this:

User Opens Site

E-mail Gets Sent in the Background IF the IP matches

E-mail gets sent saying "Thanks for stopping by"

That's it.

Link to comment
https://www.neowin.net/forum/topic/678740-quick-php-question/
Share on other sites

3 answers to this question

Recommended Posts

  • 0

i assume there's some ip to email correlation that you have, right?

there are a handful of ways i could think of to do this.. the way i would do it is get the IP of the IP address and then if the list isn't very long you can just so something like a case:

$user_ip = $_SERVER['REMOTE_ADDR'];
$email_addr = "";

switch($user_ip)
{
case "192.168.0.101":
$email_addr = "[email protected]";
break;
case "192.168.0.102":
$email_addr = "[email protected]";
break;
}

if(strlen($email_addr)>0)
{
$subject = "Thank You!";
$body = "We just wanted to thank you for stopping by!";
@mail($email_addr, $subject, $body);
}

something like that should work ok. if the list is larger, i'd look into a more complex implementation involving using a mysql table to map IP's to email addresses (and use a query like "select email_addr from TABLENAME where user_ip = 'VALUE FROM PHP'S $user_ip VARIABLE'")

let me know if you need me to explain anymore.. i didnt text the code but it was done up quick!

to reiterate the first line of my response, you have to have an email address that you somehow can associate to an IP, otherwise there's no way to just use an email address

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Too soon, I'm still not over this death!
    • Normally, I admit when a title is clickbait (unfortunately, it's become somewhat necessary in AI-dominated news sections today), but in this case, all supported versions is implied and doesn't need to be spelled out in the title. Of course, I'm covering a Patch Tuesday update but that is only available to supported Windows SKUs. All our coverage relates to supported Windows software and SKUs only unless we expressly state that it's "unsupported", "unofficial", or "third-party". I'm sorry, but supported/official SKUs don't need to be spelled out as such in every Neowin headline.
    • ALL versions or ALL SUPPORTED versions? Neowin does it again.
    • But the reality is it will work for people's needs, and they don't care about the technology that makes it. Clearly not everyone's needs, but that low end space where personal laptops were only used to type emails, watch content and browse websites, but they didn't want to do that on a small screen device. Heck, writing that out I can now see the connection and reason it'll do so well. Apple is about experience. If the experience is bad, they don't release it. Low end Windows laptop manufacturers up until this point have not taken that into consideration ever before, so slow laggy usage with brittle slimey plastic shells were common. I hope that the low end space at least creates better physical products that last a bit longer, and if Microsoft get their act together, they could also have a solid OS on such low end hardware that would actually make the experience work for what the hardware was intended for. The fact that the CPU is a "cellphone", sorry mobile phone processor is irrelevant. It's about the experience, and so far, that sounds quite solid.
  • Recent Achievements

    • Week One Done
      Jordan Smith earned a badge
      Week One Done
    • Reacting Well
      BizSAR earned a badge
      Reacting Well
    • First Post
      AndreaB earned a badge
      First Post
    • Week One Done
      Huge Trailer earned a badge
      Week One Done
    • Week One Done
      Classifyskilleducation earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      595
    2. 2
      +Edouard
      186
    3. 3
      PsYcHoKiLLa
      77
    4. 4
      Michael Scrip
      73
    5. 5
      Steven P.
      65
  • Tell a friend

    Love Neowin? Tell a friend!