i'm doing something like this for a mailto in a page i'm building:
<a href="mailto:phoenix.helpdesk@valueoptions.com?subject=Please add me to the distribution list for this report. The report number is<?=$row->RptNumber;?>" class="MenuBox"><font color="#006666">here</font></a>
obviously the first php statement will return whatever report number has been selected.
what i'm wanting to do is add a CC to the mailto where it's CC'd to <?=$row->CurrentOwner;?> which is the Current Owner of the report, obviously.
i've tried this:
<a href="mailto:phoenix.helpdesk@valueoptions.com&cc=<?=$row->CurrentOwner?>?subject=Please add me to the distribution list for this report. The report number is<?=$row->RptNumber;?>" class="MenuBox"><font color="#006666">here</font></a>
and it doesn't work. anyone have any insight?
thank you very much.
-matt