• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Have emails sent directly to a web page for database logging?

Participant ,
Apr 10, 2009 Apr 10, 2009

Copy link to clipboard

Copied

I would like to have an email that is sent to an email address, actually be processed by a coldfuson page and inserted into my database. What's the technique behind that. Kind of like when people send videos to youtube from a cell phone. I want emails sent to me to be processed by a web page and stored in my own database. Thanks

TOPICS
Advanced techniques

Views

459

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Apr 11, 2009 Apr 11, 2009

Copy link to clipboard

Copied

<cfpop> is your friend.

Azadi Saryev

Sabai-dee.com

http://www.sabai-dee.com/

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 11, 2009 Apr 11, 2009

Copy link to clipboard

Copied

Use the cfpop tag to retrieve yor e-mail messages. For example,

<cfpop

server = "mail.myMailDomain.com"

action="getAll"

name="myMessages"

username = "bkbk"

password = "bkbk001">

<cfdump var="#myMessages#">

<!--- insert code to save the messages to the database --->

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 11, 2009 Apr 11, 2009

Copy link to clipboard

Copied

LATEST

Oh, and you could use cfschedule to run the page as a scheduled task.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation