Sending an email, but can not get carriage return

I have php sending an email… but Im trying to include a signature, but I can not get it to return to the next line.

example: I want it to display like this:

$Name
$Title
$Company
$Site
$Email

But If I leave it like that, they are all on the same line like so:

$Name $Title $Company $Site $Email

and if I add “\r” or "
" after each line, then it puts an empty line between each one like so:

$Name

$Title

$Company

$Site

$Email

Im wondering if anyone can tell me how I would go about this.
thanks

Try just using
. :slight_smile:

Edit: Ah, I see you may have actually tried that, can you post some code?

yes i tried that. thanks.
Its pretty weird… I just realized it only causes problems if one of my lines has alot of charcters in it. that seems odd.

one of my lines is: “Designated Realtor, Licensed Associate Broker”
but if I delete “Associate Broker”, i get no problems…

that is odd.

Are you sure then you have no new line characters at the end of that string? Apply [fphp]trim/fphp to it to test.