Hi Basar
I have an selection in that i take range of vendors and those vendors and their details like email id are already present in adr6 table. So on selection basis i have to fetch details of multiple vendors. Hence the code above you suggested hard coded is not possible.
Still i am using below code ,in that mail is going to multiple vendors but the data of vendors are repeating means every vendor not getting their own data .
loop at it_adr6 into wa_adr6.
CLEAR w_receivers.
w_receivers-receiver = wa_adr6-smtp_addr.
w_receivers-rec_type = 'U'.
w_receivers-com_type = 'INT'.
w_receivers-notif_del = 'X'.
w_receivers-notif_ndel = 'X'.
APPEND w_receivers to t_receivers.
endloop.
clear wa_adr6.