Dear all
I need to resend the same e-mail to a differnt user, once the first is sent.
So I do following:
send_request = cl_bcs=>create_persistent( ).
---------- add recipient (e-mail address) ----------------------
recipient = cl_cam_address_bcs=>create_internet_address(
i_address_string = 'myemail' ).
send_request->add_recipient( i_recipient = recipient ).
---------- send document ---------------------------------------
sent_to_all = send_request->send( i_with_error_screen = 'X' ).
How can I now take the same e-mail and send it to another address? How Can I delete the recipient I set before?
thank you