Oracle BPEL Email Notification – Remove Attachment

AshokTechnical TipsLeave a Comment

If you have used the email notification activity in Oracle BPEL (up through the latest version at the time of this writing, 10.1.3.3.1), you might have found that you always get an attachment for your email body, even if you don’t want one.  There is a solution:

Once in the scope of the email notification activity, look for a copy block like the following.  It typically contains ‘NotificationAttachment1.html’:

1
2
3
4
5
<copy>
<from expression=”string(’NotificationAttachment1.html’)/>
<to variable=”varNotificationReq” part=”EmailPayload”
query=”/EmailPayload/ns1:Content/ns1:ContentBody/ns1:MultiPart/ns1:BodyPart[1]/ns1:BodyPartName”/>
</copy>

You should remove this completely and voila – you’re email with show up in the body of the email. 

Note: you should still pick multipart message with 1 attachment (just unintuitive UI in JDeveloper for this).  So, if you pick 2 attachments, you will actually get 1 attachment.