+ Post New Thread
Results 1 to 12 of 12
Windows Thread, Simple Email Client in Technical; Hi, We have just been told that students will need to be able to create an example email for an ...
  1. #1
    linkazoid's Avatar
    Join Date
    May 2007
    Location
    London
    Posts
    550
    Thank Post
    89
    Thanked 81 Times in 65 Posts
    Rep Power
    55

    Simple Email Client

    Hi,

    We have just been told that students will need to be able to create an example email for an assessment they will be doing but they can not have internet access.

    They need to be able to enter a to:, cc:, subject and the message text. They then need to printscreen the email but not send it.

    I've had a look at some portable email clients but I dont think it will work too well.

    Does anyone know of any flash swf that can replicate an email client? or can suggest anything different?

    Thanks,

    Michael

  2. IDG Tech News

  3. #2
    p858snake's Avatar
    Join Date
    Dec 2008
    Location
    Queensland
    Posts
    1,392
    Blog Entries
    2
    Thank Post
    28
    Thanked 166 Times in 142 Posts
    Rep Power
    46
    Outlook will do this if you have it, just click no to the wizard on its start then click on new message.

  4. #3
    linkazoid's Avatar
    Join Date
    May 2007
    Location
    London
    Posts
    550
    Thank Post
    89
    Thanked 81 Times in 65 Posts
    Rep Power
    55
    We've removed outlook 2007 and the basic from the build. So unfortunatly this wont be an option for us.

  5. #4
    JPS
    JPS is offline
    JPS's Avatar
    Join Date
    May 2010
    Location
    Chelmsford
    Posts
    293
    Thank Post
    91
    Thanked 43 Times in 40 Posts
    Rep Power
    8
    Can you not just use Thunderbird?

  6. #5


    Join Date
    Jul 2007
    Location
    Rural heck
    Posts
    2,602
    Thank Post
    111
    Thanked 423 Times in 345 Posts
    Rep Power
    120
    If they litteraly just need to screen grab it you can probably make a form in AutoIT & Koda.

  7. Thanks to K.C.Leblanc from:

    linkazoid (29th September 2010)

  8. #6
    linkazoid's Avatar
    Join Date
    May 2007
    Location
    London
    Posts
    550
    Thank Post
    89
    Thanked 81 Times in 65 Posts
    Rep Power
    55
    Its needed for 1 hour for 1 day... I don't really want to spend loads of time on this if possible.

  9. #7

    SYSMAN_MK's Avatar
    Join Date
    Sep 2005
    Location
    Milton Keynes
    Posts
    3,826
    Blog Entries
    2
    Thank Post
    433
    Thanked 1,175 Times in 669 Posts
    Rep Power
    329
    Here is a quick html form that has a To, Cc, Bcc and Message body to fill out. And a button that submits the form to the printer. Haven't the time at the moment to make it look nice but if enough people would find it useful might have a go. Here is the code. Just save as an html file and pop it on the network.

    Code:
    <head>
    
    </head>
    
    <body>
    
    <form method="post" action="mailto:youremail@email.com">
    
    To...     <input type="text" size="100" maxlength="200" name="To"> <br />
    <p></p>
    Cc...     <input type="text" size="100" maxlength="200" name="Cc"><br />
    <p></p>
    Bcc...    <input type="text" size="100" maxlength="200" name="Bcc"><br />
    <p></p>
    Subject...<input type="text" size="100" maxlength="200" name="Subject"><br />
    <p></p>
    <textarea rows="25" cols="100" wrap="physical" name="comments">
    Enter Comments Here
    </textarea>
    <p></p>
    <INPUT TYPE="button" value="Print" onClick="window.print()">
    </form>
    
    
    </body>

  10. Thanks to SYSMAN_MK from:

    linkazoid (29th September 2010)

  11. #8


    Join Date
    Jul 2007
    Location
    Rural heck
    Posts
    2,602
    Thank Post
    111
    Thanked 423 Times in 345 Posts
    Rep Power
    120
    test.zip

    I've just bodged this up.

  12. Thanks to K.C.Leblanc from:

    linkazoid (29th September 2010)

  13. #9
    linkazoid's Avatar
    Join Date
    May 2007
    Location
    London
    Posts
    550
    Thank Post
    89
    Thanked 81 Times in 65 Posts
    Rep Power
    55
    Quote Originally Posted by K.C.Leblanc View Post
    test.zip

    I've just bodged this up.
    Fantastic - Do you have the au3 file so I can have a play around to see how you did it? As I don't seem to be able to use enter to go to the next line in the message box.
    Last edited by linkazoid; 29th September 2010 at 03:47 PM. Reason: More info

  14. #10


    Join Date
    Jul 2007
    Location
    Rural heck
    Posts
    2,602
    Thank Post
    111
    Thanked 423 Times in 345 Posts
    Rep Power
    120
    Code:
    ; Script Start - Add your code below here
    
    #include <ButtonConstants.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <StaticConstants.au3>
    #include <WindowsConstants.au3>
    #Region ### START Koda GUI section ### Form=C:\Program Files (x86)\Koda\Forms\mock email\Form1.kxf
    $Form1 = GUICreate("New Email", 640, 456, 221, 312)
    $Label1 = GUICtrlCreateLabel("To:", 8, 10, 20, 17)
    $Label2 = GUICtrlCreateLabel("CC:", 8, 43, 21, 17)
    $Input1 = GUICtrlCreateInput("", 72, 8, 545, 21)
    $Input2 = GUICtrlCreateInput("", 72, 41, 545, 21)
    $Label3 = GUICtrlCreateLabel("Subject:", 8, 76, 43, 17)
    $Input3 = GUICtrlCreateInput("", 71, 74, 545, 21)
    $Label4 = GUICtrlCreateLabel("Message:", 8, 104, 50, 17)
    $Button1 = GUICtrlCreateButton("Send", 544, 408, 75, 25, $WS_GROUP)
    $Input4 = GUICtrlCreateInput("", 72, 104, 545, 277, $ES_MULTILINE)
    GUISetState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###
    
    While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
    Case $GUI_EVENT_CLOSE
    Exit
    
    EndSwitch
    WEnd

  15. #11
    linkazoid's Avatar
    Join Date
    May 2007
    Location
    London
    Posts
    550
    Thank Post
    89
    Thanked 81 Times in 65 Posts
    Rep Power
    55
    I have tried the thunderbird option as suggested above. I have downloaded the portable version and have installed it on a shared drive. It works ok but as soon as another user trys to open it, it says that another user is already using it.

    Does anyone know how I can get round this?

    Michael

  16. #12


    Join Date
    Jul 2007
    Location
    Rural heck
    Posts
    2,602
    Thank Post
    111
    Thanked 423 Times in 345 Posts
    Rep Power
    120
    Quote Originally Posted by linkazoid View Post
    I have tried the thunderbird option as suggested above. I have downloaded the portable version and have installed it on a shared drive. It works ok but as soon as another user trys to open it, it says that another user is already using it.

    Does anyone know how I can get round this?

    Michael
    Try making the share read only, although this will probably just kill it dead.

SHARE:
+ Post New Thread

Similar Threads

  1. Simple Simple Digital Signage Please!
    By rocknrollstar in forum Windows
    Replies: 29
    Last Post: 22nd May 2011, 05:52 PM
  2. moodle email updation and email notification
    By monali in forum Virtual Learning Platforms
    Replies: 0
    Last Post: 3rd October 2009, 09:51 AM
  3. Have email come from distribution list email addy
    By -Jim in forum Windows Server 2000/2003
    Replies: 5
    Last Post: 31st March 2009, 10:04 PM
  4. Email client with tasktray notification
    By MK-2 in forum Windows
    Replies: 15
    Last Post: 18th May 2007, 08:22 AM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •