Where do you put in the SMTP Sever address?

-----Original Message-----
From: Dave Jones [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 06, 2003 11:13 AM
To: CF-Talk
Subject: Re: Problems with CFMAIL

Michael,
Here you go:

CFMAIL version:
<cfmail
         from="[EMAIL PROTECTED]"
         to="[EMAIL PROTECTED]"
         subject="CFMAIL msg"
>
#msg#
</cfmail>

CDONTS version:
<cfscript>
         newMail = CreateObject("COM","CDONTS.NewMail");
         newMail.From("[EMAIL PROTECTED]");
         newMail.To("[EMAIL PROTECTED]");
         newMail.Subject("CDONTS msg");
         newMail.Body('#msg#');
         newMail.send();
</cfscript>

It gets a little tricker when using bcc: and attachments. If you
need that let me know and I'll see if I can dig up some examples of that.

Dave Jones
NetEffect

At 06:15 PM 11/5/03 -0500, you wrote:
>Hi Dave,
>
>I have read that on the forums there.  But I don't really know
>how to send HTML mail with CDONTs it looks like ASP and I am not
>familiar with ASP
>
>How do you do it?
>   ----- Original Message -----
>   From: Dave Jones
>   To: CF-Talk
>   Sent: Wednesday, November 05, 2003 5:23 PM
>   Subject: Re: Problems with CFMAIL
>
>   I switched all my CFMAIL calls to CDONTS for my applications at
>   CrystalTech because of ongoing problems there with CFMAIL.
>
>   Dave Jones
>   NetEffect
>
>   At 04:37 PM 11/5/03 -0500, you wrote:
>   >Hello,
>   >
>   >I have few procedures that are running on CFMX that send
>   >information via cfmail from a form.  The emails do not get sent
>   >out consistantly.  Is there a way to make sure that the email
>   >actually went out in my code?  I do not have a lot of access to
>   >the machine or the admin it is a shared box at crystaltech.
>   >
>   >Thanks
>   >
>   >Mike
>   >
>   >
>   >----------
>   >[
>
>----------
>[
  _____  


[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to