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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

PHP mailing

  • 26-04-2010 11:25am
    #1
    Registered Users, Registered Users 2 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, Registered Users 2 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, Registered Users 2 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