Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

PHP mailing

Options
  • 26-04-2010 12:25pm
    #1
    Registered Users Posts: 15


    Is it possible to send emails and create an inbox for a user on a php based website when using apache / xampp?


Comments

  • Registered Users Posts: 68,317 ✭✭✭✭seamus


    Yep, shouldn't be a problem, but you will need access to an email server.

    Sending emails is easy, you just use the php mail() function.

    Creating and managing inboxes is more difficult because it requires you to make system calls to the mail server. This opens up big security risks, so it's not something you should do in a production environment unless you know what you're doing.

    If you're simply looking for a web frontend for managing a mail server, there are already tonnes of free software out the for it.


  • Registered Users Posts: 15 sdliverpool


    seamus wrote: »
    Yep, shouldn't be a problem, but you will need access to an email server.

    Sending emails is easy, you just use the php mail() function.

    Creating and managing inboxes is more difficult because it requires you to make system calls to the mail server. This opens up big security risks, so it's not something you should do in a production environment unless you know what you're doing.

    If you're simply looking for a web frontend for managing a mail server, there are already tonnes of free software out the for it.

    Which is the best free mail server?Im doing it as a college project so dont think it would be going online only for show


Advertisement