cancel
Showing results for 
Search instead for 
Did you mean: 

How to send Email with Cc and Bcc using MailPackage

Former Member
0 Kudos

Hi ,

we are using Mail Package to send the Email using Mail Adapter.We have a requirement where we need to send Email with Cc and Bcc using Mail Package .

Can we send Cc and Bcc using Mail Package ?

Thanks

Rajesh .

Accepted Solutions (1)

Accepted Solutions (1)

former_member463616
Contributor
0 Kudos

Hi Rajesh,

Please see the below link, it might be helpful to you.

[Bcc_cc_mail|;

Regards,

P.Rajesh

Answers (5)

Answers (5)

Former Member
0 Kudos

Thanks to all for your suggestions .

former_member192238
Participant
0 Kudos

HI Rajesh,

There is a standard structure for Receiver Mail adopter which we can get from SAP market Place but it is not provided with CC if u want to use CC then you have to go with Dynamic Configuration.

DynamicConfiguration configuration = (DynamicConfiguration) container.getTransformationParameters().getStreamTransformationConstants.DYNAMIC_CONFIGURATION);

/*any other required fields*/

DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/Mail", "THeaderCC");

configuration.put(key, "ccemail @ test.com");

Regards

Praveen Reddy

Edited by: Maareddy Praveen Reddy on Aug 10, 2011 12:17 PM

stefan_grube
Active Contributor
0 Kudos

> Can we send Cc and Bcc using Mail Package ?

No, this is not possible.

former_member192238
Participant
0 Kudos

Hi Stefan,

It is possible to use CC by using mail package.Standard structure of Receiver Mail adopter doesn't have CC but we can achieve this with the help of Dynamic Configuration.

Regards

Praveen Reddy

former_member854360
Active Contributor
0 Kudos

As per my knowledge there is no BCC field in standard mail package structue .

You can use ASMA to set CC and BCC dynamically by using THeaderCC and THeaderBCC

Former Member
0 Kudos

CHK THIS: SIMILAR DISCUSSION