<% if request("sendmail")="yes" then senderemail=request("email") recipient="jfg@mayo.edu" subject="STUDENT TRAVEL ASSISTANCE APPLICATION" body=request("name") & " has submitted an application for student travel assistance. Here is their information" & vbCrLf & "" & vbCrLf body=body & "NAME: " & request("name") & "" & vbCrLf & "UNIVERSITY: " & request("school") & "" & vbCrLf & "EMAIL ADDRESS: " & senderemail & "" & vbCrLf body=body & "FULL ADDRESS: " & request("address") & "" & vbCrLf & "PROGRAM IN WHICH REGISTERED: " & request("program") & "" & vbCrLf body=body & "EXPECTED DATE OF DEGREE: " & request("datedegree") & "" & vbCrLf & "TITLE OF PAPER: " & request("titlepaper") & "" & vbCrLf body=body & "CO-AUTHORS: " & request("coauthor") & "" & vbCrLf & "WORK DONE AND EXISTING INTEREST IN ULTRASONICS: " & request("workdone") & "" & vbCrLf & "" & vbCrLf & "SUBMITTED ON " & date set msg = Server.CreateObject( "JMail.Message" ) msg.Logging = true msg.silent = true msg.From = SenderEmail msg.FromName = Name msg.AddRecipient recipient msg.Subject = subject msg.AddRecipientBCC("jefft@assochq.org") msg.body = body if not msg.Send("dali.assochq.org") then Response.write "
" & msg.log & "
" else Response.write"Thank you for submitting. You should get a response shortly. Go back" end if else %> STUDENT TRAVEL ASSISTANCE
Name:
University:
Email Address:
Full Address:
Program in which registered:
Expected date of degree:
Title of the paper:
Co-authors:
Work done and existing interest in ultrasonics:

 

 

 

<%end if%>