Hello All.
I 'm trying to implement e-mail notification for new messages in ploneboard forum.
I use this one
http://plone.org/documentation/how-to/send-announcements/#1202153645And have following code:
# get this comment object
theComment = state_change.object
theComment_id = theComment.getId()
theComment_url = theComment.absolute_url()
# details about the human creator of the new comment
creator = theComment.Creator()
member = context.portal_membership.getMemberById(creator)
creator = {'member':member,
'id':member.getId(),
'fullname':member.getProperty('fullname', 'Fullname missing')
}
creatorName= creator['fullname']
creatorID= creator['id']
But I've face the same problem.
Ploneboard.Comment.getText() returns empty string.
Ploneboard.Comment.Description() returns empty string tool.
In portal_catalog the Comment has a valid description.
What am I wrong?
Thanks in Advance,
Allender