Application Development 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: 

how to switch off the confirmation of receipt in email

colin_cheong
Contributor
0 Kudos

Hi,

I am using the example of BCS_EXMAPLE_7 to send out the email to my User.

There is always a confirmation of receipt return mail when the User view the mail.

how can I configure to switch this off from my coding?

I had checked the setting in SCOT.

The "Confirmation of Receipt" had been turned off but why is it still receiving confirmation mail?

please assist.

1 ACCEPTED SOLUTION

former_member188458
Active Participant
0 Kudos

Hi Siew ,

To control read receipt not beng asked to the mail recipient, programatically  ,

you can check the below api while creating recipients

CALL METHOD cl_send_request_bcs=>create_recipient_from_soos1

              EXPORTING

                i_soos1 =


here in i_soos1 , u will find a parameter , READ , which could be set or unset accordingly .


Hope this helps.


Regards,

Rini

6 REPLIES 6

colin_cheong
Contributor
0 Kudos

anyone can help??

0 Kudos

Did you check in SCOT to set "Request Notification" as "Never"? 

Or else it might be controlled via your routing server and Ia m not an expert in SMTP routing server but I am pretty sure you can stop it there

0 Kudos

Hi Rudra,

I had already done the setting previously and the result is still the same.

former_member188458
Active Participant
0 Kudos

Hi Siew ,

To control read receipt not beng asked to the mail recipient, programatically  ,

you can check the below api while creating recipients

CALL METHOD cl_send_request_bcs=>create_recipient_from_soos1

              EXPORTING

                i_soos1 =


here in i_soos1 , u will find a parameter , READ , which could be set or unset accordingly .


Hope this helps.


Regards,

Rini

0 Kudos

Hi Rini,

I will try the option that you mentioned.

Thanks for the advise.

former_member288351
Participant
0 Kudos

Hi Siew,

Please check the below code its working:

DATA: l_send_request TYPE REF TO cl_bcs.


L_SEND_REQUEST->SET_STATUS_ATTRIBUTES( I_REQUESTED_STATUS = 'E'  ).


also check the below link for more detail.

with regards

vikas pandey