Category

AutoResponder

AutoResponder

AJAX is Easy

The title is not a generality. I mean it in the context of having some JavaScript code to do POST operations and get the results. I also have some PHP code that gets the POST request and creates a response. It too me only a few minutes to…

Continue reading
AutoResponder

MFC App to Windows Service

I converted my auto email program to a Windows service. Windows services are interesting because they work well when they are console programs but an MFC based program that has a main window is tricky. Since the auto email program was an MFC application with a main window,…

Continue reading
AutoResponder

State of My Art — Safari Web App

I wanted to publish some pictures of my Safari IOS web app for the auto emailer program. The web app is a web page that mimics the IOS user interface and is a remote user interface for the auto email responder program I wrote for Windows. The original…

Continue reading
AutoResponder

AJAX and Multipart/Form-Data

I’m writing a lot of code most evenings. Here is some code I wrote in JavaScript to submit an AJAX request using multipart/form-data encoding. This is better than the more typical application/x-www-form-urlencoded encoding because data does not need to be reformatted if it contains things that are not…

Continue reading
AutoResponder

SMS-Style Text Display Using HTML

Step 3. Well, this is really something like step 10. I didn’t post for a few days and now I have this running on the iPhone, and on the emulator seen here: I used tables to get the bubbles looking right and to automatically size themselves, within certain…

Continue reading
AutoResponder

SMS-Style Text Display Using HTML

Step 2 I have the images worked out for the outgoing content. Since I styled these by hand, I only set the classes properly for the one that appears complete in the image. I added a div inside of the cell that contains the text. I then gave…

Continue reading
AutoResponder

SMS-Style Text Display Using HTML

Step 1 I want to write PHP code that will read a log file of some sort and then create an HTML display for it. The display needs to look like an SMS text messaging system such as is seen on the iPhone. I only need the timestamps,…

Continue reading
AutoResponder

“Working” Animation in Status Bar

I thought that the “working” animation, like seen on smart phones and other similar devices, was neat showing up in the middle of my auto email program window but it didn’t look so good when the window is huge and when the window is full of status text….

Continue reading
AutoResponder

Multithreading SMTP Handling

SMTP seems very slow. Each time someone sends a message to my auto email program, I need to send out two emails and maybe more. One email is to the sender to give them whatever response is appropriate. The other that is always sent is the log email…

Continue reading