How to mail attachment using the mail syntax?

Looking to add an attachment using this method:

How is that accomplished?

<cfmail
   from="me@company.com"
   to="you@company.com"
   subject="Example Attachment">
   blah.. blah..
   <cfmailparam file="c:\fubar\readme.md">
   <cfmailparam file="c:\fubar\photo.gif">
</cfmail>

If you get a chance, updating the Lucee docs would be great :slight_smile:

Iā€™d love to see the cfscript syntax. Is that available anywhere?

// Create an instance of the mail object
mail=new mail();

// Set it's properties
mail.setSubject( "Sample Email" );
mail.setTo( "to@example.com" );
mail.setFrom( "from@example.com" );
mail.setCC( "cc@example.com" );
mail.setBCC( "bcc@example.com" );

// Add an attachment
mail.addParam( file="C:\foo.txt" );

// Add email body content in text and HTML formats
mail.addPart( type="text", charset="utf-8", wraptext="72", body="This is a test message." );
mail.addPart( type="html", charset="utf-8", body="<p>This is a test message.</p>" );

// Send the email
mail.send();

h/t coldfusion - How do you send an email with an attachment using cfscript in CF9? - Stack Overflow via cfmail with attachment - Google Search

3 Likes