import jet
import jet.websites.jeffandmere as jeffandmere



def yield_data(psp_directory, **kwargs):
	text =  '<p>Please RSVP by sending an email to (or texting or calling) Jeff or Meredith.  \n'
	text += 'Please include where you are staying and information on your flights.  We know\n'
	text += 'we wanted people to RSVP by emailing to jeffandmere.com, but that uses\n'
	text += 'Jeff\'s personally-written SMTP server, which has been sad-listed\n'
	text += 'by yahoo mail (It should work fine for AOL and Gmail though).</p>\n'

	text += '<p>We very much look forward to everyone coming down... \n'
	text += 'It will truly be a great time.</p>\n'

	for data in jeffandmere.yield_page('RSVP', jeffandmere.yield_standard_page, text=text, **kwargs):
		yield data


