1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | <apex:component access="global" controller="PeEmailAlertController"> 
 |      <apex:attribute name="targetId" assignTo="{!peId}" description="" type="Id" required="false" /> 
 |      <html> 
 |          <head></head> 
 |          <body> 
 |              {!pe.Owner.Alias} 先生/女士:您好!! 
 |              <br/><br/> 
 |              对{!pe.Graph_text__c}的图表,{!pe.CreatedBy.Alias} 反馈给您以下内容,请确认并进行改善 
 |              <br/><br/> 
 |              反馈内容(1.pdf): 
 |              <br/> 
 |              {!pe.Comment__c} 
 |              <br/><br/> 
 |              任务URL:{!pe.TASK_LINK_for_E_mail__c} 
 |          </body> 
 |      </html> 
 |  </apex:component> 
 |  
  |