You're very welcome. :)

Although I'm certainly not _the_ authority. heh.

I'd like to think I'm pretty proficient with it.

I do what I can to help. :)

> Thank u sir!

> You seem to be the authority on cf!

> I will give it a shot tomorrow.

> Thank you again,

> Mark

> On 8/8/03 8:54 PM, "S.Isaac Dealey" <[EMAIL PROTECTED]>
> wrote:

>> You might want to try using <cfsavecontent> to save your
>> email message content instead of cfset -- it's much more
>> intuitive for generating html content as a string, and
>> might
>> solve your problem. Also qualify your ID variable with
>> the
>> name of the query -- the column name in and of itself is
>> non-descript enough to be liable to cause problems, but
>> it'll be easier if you qualify it with the query name:
>>
>> <cfoutput query="newsletter">
>> <cfsavecontent variable="htmlmessage">
>>   <a
>>   href="http://www.server.com/email/listservunsubscribe
>> .cfm?id=#newsletter.id#">
>>   UNSUBCRIBE ME PLEASE!</a>
>> </cfsavecontent>
>>
>> <cf_mailplus ... >
>> </cfoutput>
>>
>> You see in the snippet above how the column name ID could
>> be
>> confusing -- given the query name it looks like the ID
>> identifies the newsletter, although _I_ know the id
>> identifies the subscriber.
>>
>> hth
>>
>>
>> s. isaac dealey                972-490-6624
>>
>> team macromedia volunteer
>> http://www.macromedia.com/go/team
>>
>> chief architect, tapestry cms  http://products.turnkey.to
>>
>> onTap is open source
>> http://www.turnkey.to/ontap
>>
>>> I'm generating a html and text message with
>>
>>> Cf_mail plus tag. I am attempting to make a link at the
>>> bottom that allows
>>> the user to delete their record from from the DB. That
>>> works, but passing
>>> the "ID" field data using the cf mail plus is confusing
>>> me.
>>
>>> Any help is greatly appreciated. I am trying to put the
>>> <cfoutput query="ID"
>>> around the link...but I get errors. Works fine with out
>>> the remove link
>>> query.
>>
>>> Here is the basic code:
>>
>>> <!--- Head --->
>>> <cfquery datasource="datasource" name="Newsletter"
>>> dbtype="ODBC"> SELECT
>>> Email, ID From listservtest</cfquery>
>>
>>> <!--- works, but no id data in email --->
>>> <cfset htmlmessage="<html>bla bla<html> To be removed
>>> from
>>> future mailings,
>>> simply click here <a
>>> href=""http://www.server.com/email/listservunsubscribe.c
>>> fm
>>> ?id=#ID#"">UNSUBSC
>>> RIBE ME PLEASE!</a>">
>>
>>> I have tried putting the tags on the outside of the
>>> <cfset> tag..but nope.
>>> Inside the message. It just generates errors.
>>
>>> What am I doing wrong that is so obvious to everyone but
>>> me. I'm still a
>>> newbie.
>>
>>> Thanks,
>>
>>> Mark
>>
>>
>>
>>
>>> Bottom of page details: (works fine)
>>
>>> <cfoutput query="newsletter">
>>> <cf_mailplus to="#Newsletter.email#"
>>> from="[EMAIL PROTECTED]"
>>> subject="subject of email"
>>> htmlmessage="#htmlmessage#"
>>> textmessage="#textmessage#"
>>> server="mail.server.com" port="25">
>>> </cfoutput>
>>
>>> -----------------------------------------------
>>> To post, send email to [EMAIL PROTECTED]
>>> To unsubscribe:
>>>    Send UNSUBSCRIBE to [EMAIL PROTECTED]
>>> To subscribe / unsubscribe: http://www.dfwcfug.org
>>
>>
>>
>>
>> -----------------------------------------------
>> To post, send email to [EMAIL PROTECTED]
>> To unsubscribe:
>>  Send UNSUBSCRIBE to [EMAIL PROTECTED]
>> To subscribe / unsubscribe: http://www.dfwcfug.org
>>

> -----------------------------------------------
> To post, send email to [EMAIL PROTECTED]
> To unsubscribe:
>    Send UNSUBSCRIBE to [EMAIL PROTECTED]
> To subscribe / unsubscribe: http://www.dfwcfug.org




s. isaac dealey                972-490-6624

team macromedia volunteer
http://www.macromedia.com/go/team

chief architect, tapestry cms  http://products.turnkey.to

onTap is open source           http://www.turnkey.to/ontap


-----------------------------------------------
To post, send email to [EMAIL PROTECTED]
To unsubscribe: 
   Send UNSUBSCRIBE to [EMAIL PROTECTED]
To subscribe / unsubscribe: http://www.dfwcfug.org

Reply via email to