cancel
Showing results for 
Search instead for 
Did you mean: 

CC and BCC field

Former Member
0 Kudos

I want to send a email with a BCC and CC field. How could I achieve this? Should I use the mail package?

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Mark,

Yes you have to download the mail package from serivce market place and can use. Also you have this options in your mail receiver comm. channel.

...Satish

Former Member
0 Kudos

Hi Mark,

Please check below link. It will give you idea for your issue:

<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2c678dc3-0401-0010-3c80-8ef48f450491">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2c678dc3-0401-0010-3c80-8ef48f450491</a>

Regards,

Subhasha

Former Member
0 Kudos

Hi,

Check the 'adapter specific identifiers' and 'variable transport binding' checkbox in the receiver mail adapter that you have configured.

You would displayed with a list of additional parameters(like CC and BCC) that you could incorporate as part of the header.

Yes, you would have to use the mail package option in order to get the details like 'To','From' etc. as part of the XI payload.

Regards,

Smitha.

Former Member
0 Kudos

Hi,

I use the function module 'SO_DOCUMENT_SEND_API1'.

You can set receivers-copy to 'X'

Some details for the FM params, as I've used it:

document_data-obj_descr = subject of the email

put_in_outbox = 'X' (so you'll see it in the sender's SAP outbox)

contents_txt = table of html lines

packing_list-doc_type = 'HTM' (for html formatted mails)

packing_list-body_num = <# of lines in contents_txt>

packing_list-body_start = 1

receivers-receiver = someone@domain.com

receivers-rec_type = 'U' (i think this is for SMTP mail)

receivers-copy = 'X' <---- this makes the specified receiver to be CC'ed