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: 

Sending a hyperlink through mail

Former Member
0 Kudos

HI all,

I am sending a mail to outlook mailbox of a user using FM SO_NEW_DOCUMENT_ATT_SEND_API1. In that i need to send a link also. When the user clicks on that link it should go to a webpage.

Example : Mail format.

Hi,

Please <b>click here</b>.

thanks.

when user clicks on the "Click here" words it should point to webpage(html). So if anyone has come across such requirement please give your ideas.

Thanks in advance,

Shyam.

PS: Please go through the FM which i mentioned. In that FM data is taken as text elements.

4 REPLIES 4

Former Member
0 Kudos

Hi shyam,

I think you can directly append the url to the internal table tbl_text and the FM will send u as a link.

Regards,

Kasinath.

Former Member
0 Kudos

use <a href = "(url name)">click here</a> . This is how it works in html . Tell me if this works

0 Kudos

Please attached your ABAP code how you make it!

Abdo ABI ATMI

former_member217544
Active Contributor
0 Kudos

Hi Shyam,

Iam not sure whther that is possible or not. but this type of requirement we implmented in the following way.

Instead of sending 'Please Click here', we have written in the following way:

' Please go thorugh the below URL <the text based on the requrement> and followed by the URL <URL Link>.'

To send the URL you can directly give the link name and in the outlook it will be displayed in the clickable form by default.

Hope this will be helpful.

Regards,

Swarna Munukoti.