Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SEND script using mail (Using BCC blind copy)

Former Member
0 Likes
423

I am sending a script through FM CONVERT_COMM_TYPE_DATA .My requirement is to send this script to one more person in BCC field.

Is this possible.

Regards.

1 REPLY 1
Read only

Former Member
0 Likes
342

FM SO_DOCUMENT_SEND_API1 has TABLES "receivers" and you can assign Blind Copy by appendig data to it like e.g. given below.

t_receivers-receiver = 'some email address'.

t_receivers-rec_type = 'U'.

t_receivers-com_type = 'INT'.

t_receivers-notif_del = 'X'.

t_receivers-notif_ndel = 'X'.

t_receivers-express = 'X'.

t_receivers-blind_copy = 'X'.

APPEND t_receivers.

CLEAR t_receivers.

for FM CONVERT_COMM_TYPE_DATA what data are you passing to PE_MAIL_RECIPIENT?