Message Template Definition
Template Name: Map Plan Printout
Template Subject Example
Here is your MAP Plan |
---|
Template Body Example (Download)
Error rendering macro 'viewpdf' : Failed to find attachment with Name MAPPlanPrintout.pdf |
---|
Template Subject Code
Here is your MAP Plan |
---|
Template Body Code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <style> @media print { table { page-break-after:auto } tr { page-break-inside:avoid; page-break-after:auto; page-break-before:auto } td { page-break-inside:avoid; page-break-after:auto; page-break-before:auto } thead { display:table-header-group } tfoot { display:table-footer-group } } </style> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>$title</title> </head> <body style="font-family: Tahoma; font-size: 12px;"> #if("$!emailNotes" != "") <div> <p>$!studentFullName,</p> <p> $!emailNotes </p> </div> #end <div> <p style="padding-left:20px"> $!studentFullName</br> $!studentEmail</br> School Id: $!studentSchoolId </p> </div> <div> <p style="text-align:center"> $title </p> </div> <div style="position:relative;left:100px"> #foreach($termCourse in $termCourses) <table cellpadding="0" cellspacing="0" style="background-color:white;width:80%;border-collapse:collapse;"> <caption style="font-size:small;text-align:left">$termCourse.term.name</caption> <thead> <tr > <th style="text-align:center;border:1px solid black;width:325"> Course<br/>Number </th> <th style="text-align:center;border:1px solid black;width:60%"> Course Title </th> <th style="text-align:center;border:1px solid black;width:15%"> Credit <br/> Hours </th> </tr> </thead> #foreach($course in $termCourse.courses) <tr> <td style="text-align:center;border:1px solid black;width:25%;padding-bottom:5px; padding-top:5px;padding-left:5px"> $!course.formattedCourse </td> <td style="text-align:left;border:1px solid black;width:60%;padding-bottom:5px; padding-top:5px;padding-left:5px"> $!course.courseTitle </td> <td style="text-align:center;border:1px solid black;width:15%;padding-bottom:5px; padding-top:5px;padding-left:5px"> $!course.creditHours </td> </tr> <tr> #end <tr> <td colspan="3" style="height:35px; padding-bottom:5px; padding-left:80px;vertical-align:bottom"> <b>Total Credit Hours:</b> $!termCourse.totalCreditHours </td> </tr> <tr> <td colspan="3" style="height:15px"> <br/> </td> </tr> </table> #end <table style="width:80%"> <tbody> <tr> <td style="text-align:center"> <b>CREDIT HOURS FOR PLAN: $!totalPlanHours</b> </td> </tr> </tbody> </table> </div> <div> <p style="padding-left:20px"> <b>If I have questions or concerns about my plan I will contact: </p> <p style="padding-left:20px"> $!contactName</br> $!contactTitle</br> $!contactPhone</br> $!contactEmail </p> <p style="padding-left:20px"> $!ownerFullName</br> $!ownerPhone</br> $!ownerEmail </p> </div> </body> </html> |
---|