<% ' Function Declarations Sub GenerateEmail(strFrom, strTo, strSubject, strMessage) Dim objConfig Dim objMessage Dim strSch Set objConfig = Server.CreateObject("CDO.Configuration") Set objMessage = Server.CreateObject("CDO.Message") Set objMessage.Configuration = objConfig strSch = "http://schemas.microsoft.com/cdo/configuration/" objConfig.Fields.Item(strSch & "sendusing") = 2 objConfig.Fields.Item(strSch & "smtpserver") = "10.1.1.12" objConfig.fields.update objMessage.From = strFrom objMessage.To = strTo objMessage.Subject = strSubject objMessage.TextBody = strMessage objMessage.Send Set objMessage = Nothing Set objConfig = Nothing End Sub ' Test to see if the page is posted. If len(Request.Form("btnSubmit")) > 0 Then ' Declare local variable to hold the "Thank You" page location. Dim lsThankYouPage ' Declare local email varialbes. Dim lsEmailFrom Dim lsEmailTo Dim lsEmailSubject Dim lsEmailBody ' Decalare local variables to hold form data. Dim lsFirstName Dim lsLastName Dim lsAffiliation Dim lsTitle Dim lsAddress Dim lsCity Dim lsState Dim lsZip Dim lsCountry Dim lsPhone Dim lsFax Dim lsEmail ' Set the redirect page. lsThankYouPage = "http://www.pff.org/events/upcomingevents/thanks.html" ' Assign form fields to local variables lsFirstName = Request.Form("msFirstName") lsLastName = Request.Form("msLastName") lsAffiliation = Request.Form("msAffiliation") lsTitle = Request.Form("msTitle") lsAddress = Request.Form("msAddress") lsCity = Request.Form("msCity") lsState = Request.Form("msState") lsZip = Request.Form("msZip") lsCountry = Request.Form("msCountry") lsPhone = Request.Form("msPhone") lsFax = Request.Form("msFax") lsEmail = Request.Form("msEmail") ' Build email header and body information. lsEmailFrom = lsEmail lsEmailTo = "brookee@pff.org" lsEmailSubject = "IRLE Workshop Registration" lsEmailBody = "First Name: " & lsFirstName & vbcrlf lsEmailBody = lsEmailBody & "Last Name: " & lsLastName & vbcrlf lsEmailBody = lsEmailBody & "Affiliation: " & lsAffiliation & vbcrlf lsEmailBody = lsEmailBody & "Title: " & lsTitle & vbcrlf lsEmailBody = lsEmailBody & "Address: " & lsAddress & vbcrlf lsEmailBody = lsEmailBody & "City: " & lsCity & vbcrlf lsEmailBody = lsEmailBody & "State: " & lsState & vbcrlf lsEmailBody = lsEmailBody & "Zip: " & lsZip & vbcrlf lsEmailBody = lsEmailBody & "Country: " & lsCountry & vbcrlf lsEmailBody = lsEmailBody & "Phone: " & lsPhone & vbcrlf lsEmailBody = lsEmailBody & "Fax: " & lsFax & vbcrlf lsEmailBody = lsEmailBody & "Email: " & lsEmail & vbcrlf ' Send the email. GenerateEmail lsEmailFrom, lsEmailTo, lsEmailSubject, lsEmailBody ' Redirect to the "Thank You" page. Response.Redirect(lsThankYouPage) Else %> The Progress & Freedom Foundation - Events
about pff news issues & publications aspen summit search
Past Events

Registration

 
The Federal IRLE Workshop
 

February 25 and 26, 2006
The Aspen Institute, Aspen Colorado

The Federal IRLE is a non-partisan educational and outreach program of The Progress & Freedom Foundation with academic partners from the University of Colorado Silicon Flatirons Telecommunications Program and the George Mason University Interdisciplinary Center for Economic Science. The Federal IRLE is designed to teach House and Senate staff principles of economics and technology they can use to analyze any regulatory industry, such as communication, intellectual property and electricity.

The Federal IRLE is a pioneering effort devoted to providing House and Senate staff interested in communications, electricity and intellectual property issues with the analytical tools the need to evaluate the interplay between legislation, regulation and technological dynamism. The IRLE draws on the expertise of leading academics, practitioners and scholars. The purpose is to teach economic principles and concepts to staff so that they themselves may apply these concepts to regulatory situations in network industries. Airfare and accommodations will be provided consistent with ethics guidelines.

Those interested in attending should register using the form below. Questions should be directed to Eileen Goulding at 202-289-8928 or egoulding@pff.org.

Registration Form (Required fields in bold):

First Name Last Name
Company
Title
Address
City       State       Zip
Country
Phone
Fax
Email


(must be a valid email address for the form to function properly, e.g. name@company.com)

   
 
News Releases
 
PFF in the News






The Progress & Freedom Foundation The Progress & Freedom Foundation The Progress & Freedom Foundation

 

<% End If %>