Looking For Work ?
At Agency Drivers Northwest we have very high standards. We have an excellent reputation as a supplier of well presented, professional drivers who can give a good account of themselves on assignment and who will uphold our good reputation.
So, if you think you have what it takes to join the ranks of the most professional driving force in the Northwest then please complete the form below or call us during office hours on: 01254 676687 or 01942 217991.
We are currently looking for Class 1 HGV drivers for work in Warrington, Skelmersdale and Haydock.
We are also looking for HGV Class 1 drivers with ADR certificates for work in Preston.
We currently have no vacancies for van drivers or car drivers.
<%
' Amend the Recipient, Subject and redirected page below.
if (Request.Form("Submit")) = "Submit Request" then
emailmsg = ""
for i = 1 to request.form.count()
thing = request.form.key(i)
thevalue = request.form.item(i)
emailmsg = emailmsg & trim(thing) & ": " & trim(thevalue) & vbcrlf
next
set msg = Server.CreateOBject( "JMail.Message" )
msg.Logging = true
msg.silent = false
msg.From = request.form("email")
msg.AddRecipient "m.howarth@agencydriversnorthwest.com" 'Recipient of emailed form
msg.Subject = "New Driver Application" 'Subject of Email
msg.Body = cstr(EmailMsg)
msg.Send( "www17.redstation.co.uk" ) 'Change this to www2, www3 etc
response.redirect "thankyou.htm" 'address of thank you page
end if
%>
|