----- Original Message -----
From: "Rick Faircloth" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, February 09, 2004 8:39 PM
Subject: Formatting within email from CFMail?

> Is there a way to cause info included from a query
> to be aligned in columns when displayed in the email?
>
> Instead of:
>
> Faircloth, Rick / 204 Windsor Drive / Hinesville / Feb 13, 2004
> Martin, John / 205 Way Lane / Midway / Mar 15, 2004
>
> Have it display like this:
>
> Faircloth, Rick    204 Windsor Drive    Hinesville    Feb 13, 2004
> Martin, John       205 Way Lane         Midway       Mar 15, 2004
>
> (Hopefully that's be lined up in this email!)
>
> It comes from code like:
>
> #AgentLastName#, #AgentFirstName# / #PropertyAddress# / #PropertyState# /
> #ExpirationDate#

You might choose to use HTML email formatted using tables.  For plaintext,
though, use the LJustify() function.  Something like this:

#LJustify(AgentLastName & ", " & AgentFirstName, 35)#
#LJustify(PropertyAddress, 30)#  #LJsutify(PropertyState, 30)#
#ExpirationDate#

Adjust the column width to suit your application.
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to