S
|
shoppy author 6/4/2008 |
Hi all, I used the 'Send email with new data' in Events. Just want to send an email when I have done an edit on a record. After the edit I want to have it send an email with the content of two fields. These are the fields 'Name' and the field 'Number'. These fields are in the Table '_kandidaten'. And I would like these two fields in the subject of the mail. How do I do this? regards, John
|
J
|
Jane 6/4/2008 |
John, $subject=$values["Name"]." ".$values["Number"]; |
S
|
shoppy author 6/4/2008 |
Great Jane it works! // ********** Send conformation email ************
|
S
|
shoppy author 6/5/2008 |
Only one problem!! |
J
|
Jane 6/5/2008 |
John, ... //Headers $headers = "To: $to" . "\r\n"; $headers.= "From: $from" . "\r\n"; $headres.= "MIME-Version: 1.0" . "\r\n"; $headers.= "Content-Type: text/html; charset=\"iso-8859-1" . "\r\n"; ... |
S
|
shoppy author 6/5/2008 |
Great !!! |
![]() |
powersitedesign 7/23/2008 |
John, here is the correct code:
//********** Send email with new data ************ |