-1

There are any configuration in coldfusion application server?

James A Mohler
  • 11,060
  • 15
  • 46
  • 72
user1479328
  • 13
  • 1
  • 4
  • i have 2 application running in my coldfusion 9 server and get to my application now when i see this mail i've got both of applications mail in my any of applications so i want to see only according application's mails.. Thanks – user1479328 Jun 25 '12 at 11:45

1 Answers1

0

I don't think it is an option to identify apps that send emails in cf administrator.

You may have to use the <cfmailparam> tag in sending emails to identify the application:

<cfmailparam name="x-app" value="name_of_my_application">

Then you'll have to examine the contents of the text file to determine which application sent the email.

Scott Jibben
  • 2,229
  • 1
  • 14
  • 22