just looking for a point in the correct direction..
So I’ve developed a little application on the back end of our websites that allows the girls in our office to send out letter-headed PDF quotations to our potential clients via email.
I’ve done this using a simple HTML form, the FPDF class, and the php function mail()
It works a treat, but I’d like to take it a step further and create a desktop application so that the girls don’t have to go through the login section of the website to access this functionality.
I’m thinking Java?
Would this be a difficult mission someone who has only had web-developing experience?
It would only be the smallest/simplest of applications.
Thanks for any input 🙂
No it wouldn’t be difficult job to mimic your app to java desktop app that can be
Java Swing APP. you just need some practice onswing. As you are doing inphpthat iscreating PDF and mailing it. This task can easily be done in java swing by usingJava Mail APIfor emailing andITextfor pdf generation.For reference you can read following links:
Hope this helps.