Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
superbullet #1
Creating email auto-responder
Hello,
I am wondering how would I be able to develop an email auto-responder for POP mails? Do I have to use event gateways? If so which gateway would I be using?
superbullet Guest
-
Auto fill email address
I've create a "e-mail back" button on a PDF form so that by clicking on the button, it will launch the default email program on their computer. My... -
Creating Custom Datagrid that auto adds attributes at <TD> leve
I am creating a custom data grid in which I want to modify Table, Row and Cell level attributes. I have discovered how to update the row level... -
Auto Reply Email with PHP when MySQL is updated
I am trying to build an application using PHP and MySQL that captures information regarding an individual. Name, address, email etc. I have no... -
help changing first responder
NSTextField is really kicking my ass... :-) If the user edits a text field and the value is invalid, I want to pop up an alert, restore the... -
Auto page start in an email
I have noticed a number of (spam I'm afraid) emails I have received lately automatically link to and open a web page embedded in the email as soon... -
PaulH #2
Re: Creating email auto-responder
i guess that depends on how responsive you want to be. if some lag is ok, then
simply cfschedule a page w/cfpop to check email and respond accordingly. or if
there's no need for any logic, most mail servers have some type of
auto-responder already.
if you're on cf 7 and need more responsiveness, you could write a simple
custom gateway in java (using javamail) to check a mailbox (or a series of
mailboxes) which in turn informed CFC that mail was available and the CFC would
actually process the email.
PaulH Guest
-
superbullet #3
Re: Creating email auto-responder
Thanks for the reply Paul,
Yes, I was thinking of making it use cfschedule, but like you said, I would
need it to respond as soon as possible. I am trying to create a blog reply via
email. Where the person subscribes to the blog and then can post by just
replying to the subscription email.
If only I knew java. Paul, any way I can learn simple steps to write java code
to use javamail?
superbullet Guest
-
PaulH #4
Re: Creating email auto-responder
well mm's supplies an empty gateway example that should get you started in
terms of the gateway. for the javamail bits, there's a boatload of examples on
[url]http://java.sun.com/products/javamail/[/url]. prodding a POP3 inbox is almost
trivial.
if i get the time, i'll see what i have laying around.
PaulH Guest
-
superbullet #5
Re: Creating email auto-responder
I managed to somehow use an XMPP gateway a week ago, but all I understood was
basically the Administrative Gateway page, how gateways work, and the
configuration file. Besides these 3, I am completely lost. Therefore, I don't
know how to import these java classes, how to use the javamail api, or anything
associated with java for that matter, except simple invokations.
I ordered forta's cf 7 adv book, it has a few sections on gateways, maybe that
will help me understand how the java side of it functions. I have no problem
with how the cf components act as a listener, and the cfgs, etc etc, but I
don't know exactly how they work internally and how the java invokation works.
And I can't seem to understand it either.
If you have a better source for understanding this Paul, please let me know,
thanks.
superbullet Guest
-
PaulH #6
Re: Creating email auto-responder
well if you understand that much i'd say you're well on your way.
i forgot that the advanced cf 7 book has a chapter on gateways and the
[url]http://www.forta.com/books/0321292693/[/url] (see chapter 31) is exactly what you're
looking for. i think robi sen wrote that chapter.
PaulH Guest
-
zbob99 #7
Re: Creating email auto-responder
I have been using cfschedule to do something similar. It checks our email
server every 2 minutes. It is simple, fast and actually very little overload
to the system. A easy, cheap alternative until you can get the cool CFMX7
event gateway to work!
Bob
zbob99 Guest



Reply With Quote

