elizas

Members
  • Content count

    3
  • Joined

  • Last visited

About elizas

  • Rank
    Forum Newbie
  1. Using CFMAIL tag attributes we provide all the details for sending an email programmatically like TO, FROM, MAILSERVER etc. The body of the email goes in between the starting and ending tags of CFMAIL. CFMAILPARAM (sub tag for CFMAIL) in ColdFusion is normally used to attach a file or add a header to a message. Using this tag, we can send embedded images in an email. Example Code: to="{recipient email address}" from="{sender email address}" subject="Embedded Image Example" type="html"> Image Embed Example file="{path to the image file}" contentid="img_id" /> Hope u find this tip useful.Any suggestions are appreciated.
  2. Normally when we send an image through an email, we send it either as an attachment or external link. In addition to these two we have one more way to do the same in ColdFusion, i.e. sending embedded images in an email. Further Details: Using CFMAIL tag attributes we provide all the details for sending an email programmatically like TO, FROM, MAILSERVER etc. The body of the email goes in between the starting and ending tags of CFMAIL. CFMAILPARAM (sub tag for CFMAIL) in ColdFusion is normally used to attach a file or add a header to a message. Using this tag, we can send embedded images in an email. Example Code: to="{recipient email address}" from="{sender email address}" subject="Embedded Image Example" type="html"> Image Embed Example file="{path to the image file}" contentid="img_id" /> Eliza
  3. Description: Normally when we send an image through an email, we send it either as an attachment or external link. In addition to these two we have one more way to do the same in ColdFusion, i.e. sending embedded images in an email. Further Details: Using CFMAIL tag attributes we provide all the details for sending an email programmatically like TO, FROM, MAILSERVER etc. The body of the email goes in between the starting and ending tags of CFMAIL. CFMAILPARAM (sub tag for CFMAIL) in ColdFusion is normally used to attach a file or add a header to a message. Using this tag, we can send embedded images in an email. Example Code: to="{recipient email address}" from="{sender email address}" subject="Embedded Image Example" type="html"> Image Embed Example file="{path to the image file}" contentid="img_id" /> For more information refer