[rt-users] Adding HTML comment with a scrip

nhenderson nate908 at gmail.com
Tue Dec 15 10:30:39 EST 2015


Try this: 

my $myContent = "<strong>Hello</strong>"; 

# Create a mime object to tell RT that the comment will be an HTML comment. 
my $mimeObj = MIME::Entity->build( 
  Type => "text/html", 
  Charset => 'UTF-8', 
  Data => $myContent 
); 

$self->TicketObj->Comment(MIMEObj => $mimeObj);



--
View this message in context: http://requesttracker.8502.n7.nabble.com/Adding-HTML-comment-with-a-scrip-tp60705p61099.html
Sent from the Request Tracker - User mailing list archive at Nabble.com.



More information about the rt-users mailing list