Advertisement
Advertisement
| 05.28.2008 at 08:51PM PDT, ID: 23440324 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: |
'---- Send e-mail ---------------------------------------------------
'***** D E B U G *****
'Response.Write(vDate1 & "<br>")
'Response.Write(vDate2 & "<br>")
'Response.Write(strEmplName & "<br>")
'Response.Write(strEmplID & "<br>")
'Response.Write(strEmail & "<br>")
Dim objMail, vObjMail_To, vObjMail_From, vObjMail_Cc, vObjMail_Subject, vObjMail_Redirect
' vObjMail_To = "HT.HRLeaveAdmin@hawaiiantel.com"
vObjMail_Cc = "jeff.furumura@hawaiiantel.com;"
vObjMail_From = strEmail
vObjMail_Subject = "Request for Leave Packet"
vObjMail_Body = "<b>Name............................:</b> " & strEmplName &_
"<br><b>Start of illness................:</b> " & vDate2 &_
"<br><b>FMLA Self-Check, Hours Worked...:</b> " & strHoursWorked &_
"<br><b>FMLA Self-Check, FMLA Hours Used:</b> " & strFMLAHours
vObjMail_Redirect = "http://p2.hawaiiantel.com/hr/fmla/FMLA_PacketReq.asp"
'***** D E B U G *****
Response.Write(vObjMail_To & "<br>")
Response.Write(vObjMail_Cc & "<br>")
Response.Write(vObjMail_From & "<br>")
Response.Write(vObjMail_Subject & "<br>")
Response.Write(vObjMail_Body & "<br>")
Response.Write(vObjMail_Redirect)
%>
<form action="SendMail.asp" method="post" name="mailform">
<input type="hidden" name="to" value="<% =vObjMail_To %>" />
<input type="hidden" name="cc" value="<% =vObjMail_Cc %>" />
<input type="hidden" name="from" value="<% =vObjMail_From %>" />
<input type="hidden" name="subject" value="<% =vObjMail_Subject %>" />
<input type="hidden" name="message" value="<% =vObjMail_Body %>" />
<input type="hidden" name="RedirectURL" value="<% =vObjMail_Redirect %>" />
<input type="submit" name="submit" value="Request Leave Packet" />
</form>
|