Jump to content

Recommended Posts

Ok so i created a social networking program for my school. Its coded in php and using the MySQL database. In this teachers and students can communicate through an internal emailing system (Kind of like what myspace and facebook do)...well my teachers said it would be alot better if they could just get the emails sent straight to them and not have check the social network all the time. So do you know how i would do this? Also how would they reply? i mean, how would the user get the message. thats where im stuck.

 

1. Send mail from students to teachers email (mail(); i think)

2. HOW do i receive mail and distribute it to the correct students

 

Anything on this subject would be helpful.

The from and reply to settings are set in the header parameter of the mail function.

The following example is from php.net

<?php
$to      = '[email protected]';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: [email protected]' . "\r\n" .
    'Reply-To: [email protected]' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?>

 

The full function details are here http://us2.php.net/manual/en/function.mail.php

 

Hope this helps :)

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.