Badly need some php help :)

by pede
7 replies
Hey guys...

I have been working on setting up an web based email site. I have it up and running and it works great.

Except.....

One of the attractions to an email site for me was the ability to add a tag line in all outgoing emails as to help spread the word about the site.

The script has a tag line system that you can set up either as an html tag or a plain text tag.

Problem is I can not get the system to NOT send out BOTH tag lines. HTML and Plain text, in the SAME email.

If I set up only the html tag, it still sends the email with a horizontal line under the html tag and has the   code that shows under tha horizontal line. Looks really crappy.

Can someone please help me with this? It is holding me up from promoting the site.

Thank you,
John

PS - I have to go out for the day but if I can, I need to deal with this at once. So... please send an email to my wife at pede69 [@] comcast.net and I will have all the login information ready for her to send to you. Thank you so much again for your help and I will be happy to give you a once year web hosting account for you help if you need it. All the bells and whistles. (unix)
#badly #php
  • Profile picture of the author Techie Turtle
    Have you tried contacting the developer?
    {{ DiscussionBoard.errors[229545].message }}
    • Profile picture of the author pede
      I have tried.... I get no responce from them....

      J
      {{ DiscussionBoard.errors[229568].message }}
  • Profile picture of the author Techie Turtle
    Originally Posted by pede View Post

    If I set up only the html tag, it still sends the email with a horizontal line under the html tag and has the   code that shows under tha horizontal line. Looks really crappy.
    If I'm reading this right, why don't you make your clickable html tag something like Free Email Service and then set your plain text tag to say something like Reliable email service - FREE.

    At least this way you'll avoid the   tag. Also, have you looked at the php file that is being called by your main script? Maybe the   tag is in there??
    {{ DiscussionBoard.errors[229590].message }}
  • Profile picture of the author pede
    Actually... no matter what I do the   does not go away.

    Thank you,
    J
    {{ DiscussionBoard.errors[229779].message }}
    • Profile picture of the author Spencer Westwood
      It may take a bit of hunting to find the errant bit of code, but if you're using some templating system I'd look there first.

      If you are still stuck then give me a PM with the login details and I'll have a dig around for you.

      Kind regards, Spencer
      {{ DiscussionBoard.errors[230622].message }}
  • Profile picture of the author richardt23476
    I assume this is a common logic error in the sending email php code. I am willing to help. plz PM me the login info if you haven't resolve the problem yet.
    {{ DiscussionBoard.errors[235313].message }}
  • Profile picture of the author awesometbn
    Common logic error is a possibility, like richardt23476 mentioned. It sounds like the   is printed as text instead of being interpreted properly as presentation for the non-breaking space character as an HTML entity. Could this be related to unicode? See some of the extended character set in the code excerpt below.
      = \u00A0
    © = \u00A9
    ™ = \u00AE

    I saw this resource on another website, but it might be useful to you here. Take a look at this mapping of unicode characters (not my site, no affiliation).

    BabelMap (Unicode Character Map)
    {{ DiscussionBoard.errors[236741].message }}

Trending Topics