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

retrieve emails attachment

SujeetMishra
Active Contributor
0 Likes
615

Hello All,

Is it possible to retrieve emails attachment from external email address, not from sap office inbox ?

Thanks,

Sujeet

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
527

yep you can configure that in scot -> settings -> inbound processing

there you can define a class for inbound processing

ZCL_EMAIL_RECEIVE

and in IF_INBOUND_EXIT_BCS~PROCESS_INBOUND

you can define logic on how to treat the email and it's attachments

see /people/thomas.jung3/blog/2004/09/09/receiving-e-mail-and-processing-it-with-abap--version-610-and-higher

for example

and here how to treat attachments

/people/gregor.wolf3/blog/2005/10/02/inbound-mail-processing-150-attach-files-to-opportunity

kind regards

arthur de smidt

2 REPLIES 2
Read only

Former Member
0 Likes
528

yep you can configure that in scot -> settings -> inbound processing

there you can define a class for inbound processing

ZCL_EMAIL_RECEIVE

and in IF_INBOUND_EXIT_BCS~PROCESS_INBOUND

you can define logic on how to treat the email and it's attachments

see /people/thomas.jung3/blog/2004/09/09/receiving-e-mail-and-processing-it-with-abap--version-610-and-higher

for example

and here how to treat attachments

/people/gregor.wolf3/blog/2005/10/02/inbound-mail-processing-150-attach-files-to-opportunity

kind regards

arthur de smidt

Read only

SujeetMishra
Active Contributor
0 Likes
527

Done