- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsHi,
I have this in my code:
$emailText=$txtEmail;
$emailText=ereg_replace("\
where $txtEmail is the text I get from the text box and the very one which has the link. I have used <a href="...">www/..</a>. I thought it was because of the double quotes and even used the backslash but it didnt work out. Otherwise I have been getting this javascript :Filtered() thing.
As for the BCC:
$to=
$from =
$subject=
$message=
$additional = $from."Content-Type: text/html";
where should I place the BCC. I tried to place it as
$additional=$additional."B
So you guys have any idea on this one. Till next time take care and enjoy coding.
Sid
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: VGRPosted on 2003-07-09 at 04:38:42ID: 8884362
don't do the ereg_replace() thing :
1) ereg_replace is slower than str_replace() and you've no regexp, in fact :D
2) <br> is not a valid email line separator in a text/plain message according to the RFC, \n (or, better, \r\n) is.
3) alternatively, send the message as text/html if you insist in putting in HTML code like <BR>
4) the BCC is better placed first in the headers field (if my memory is corrrect)