2011 Mar 07 12:59 PM
Dear all
simple question.... how can I send a blindcopy (BCC) using cl_bcs?
thank you
2011 Mar 07 1:02 PM
In the method ADD_RECIPIENT.
pass I_BLIND_COPY = 'X' and assign the email id to I_RECIPIENT
2011 Mar 07 1:02 PM
In the method ADD_RECIPIENT.
pass I_BLIND_COPY = 'X' and assign the email id to I_RECIPIENT
2011 Mar 07 1:48 PM
how should this look like... ??
i have this code here for the To-Address:
---------- add recipient (e-mail address) ----------------------
recipient = cl_cam_address_bcs=>create_internet_address(
i_address_string = zrepbase-smtp_addr ).
add recipient to send request
send_request->add_recipient( i_recipient = recipient ).
and for the BCC i'm not sure what I should do.... something like this????
---------- add bcc (e-mail address) ----------------------
recipient_bcc = cl_cam_address_bcs=>create_internet_address(
i_address_string = zrepbase-smtp_addr ).
add bcc to send request
send_request->add_recipient( i_blind_copy = 'X' ).
2011 Mar 07 1:57 PM
add bcc (e-mail address)
recipient_bcc = cl_cam_address_bcs=>create_internet_address(
i_address_string = zrepbase-smtp_addr ).
* add bcc to send request
send_request->add_recipient( i_recipient = recipient_bcc
i_blind_copy = 'X' ). "Also pass the recipient_bcc here