J
|
Jane 2/14/2008 |
Stephan, mail($email, $subject, $message, 'From: MMP Projects <".$values["FieldName"].">'); |
M
|
mmponline author 2/14/2008 |
Jane |
M
|
mmponline author 2/16/2008 |
Any help here? |
S
|
smcgo4 2/18/2008 |
Any help here?
|
M
|
mmponline author 2/18/2008 |
The reply e-mail must go to the responsible person of the project, but the address lies in another table. The event I use to send a copy to this person is: |
J
|
Jane 2/18/2008 |
Stephan, global $conn,$strTableName; $email = ""; $str = "select RPmail1 from MMPProjects where ProjID=".$_SESSION[$strTableName."_masterkey1"]; echo $str; $rs = db_query($str,$conn); if ($data = db_fetch_array($rs)) $email = $data["RPmail1"]; echo $email; |
M
|
mmponline author 2/18/2008 |
I get the following error with above code: mail($email, $subject, $message, 'From: MMP Projects <".$values["RPmail1"].">'); |
J
|
Jane 2/19/2008 |
Stephan, |