Here's the deal I have several people that I am sending an email to off of this website. The issue is this, If I select 6 and under I'm fine it will list all people in the To: and will display a body. The problem is that I'm wanting to send to about 30+ people at a time. and if I select 7 or more, it will only display the 1st 7 people and it will not display the body. When I echo it out I see everyone there in a string but , when I say yes put in mail it loses them. Anyone have a clue?
<?php
echo $Body;
echo $mail;
echo $Subject;
echo
"<html>
<head>
<script language='javascript'>
function autosubmit(){
document.form1.submit()
}
onload=autosubmit;
</script>
</head>
<body>
<form name='form1' method='post' action='mailto:$mail?Body=$Body'>
</form>
</body>
</html>"
?>
Thanx,
nufather
<?php
echo $Body;
echo $mail;
echo $Subject;
echo
"<html>
<head>
<script language='javascript'>
function autosubmit(){
document.form1.submit()
}
onload=autosubmit;
</script>
</head>
<body>
<form name='form1' method='post' action='mailto:$mail?Body=$Body'>
</form>
</body>
</html>"
?>
Thanx,
nufather