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

Email link text

kmoore007
Active Contributor
0 Likes
526

I would like to create an Email which contains a web link. But instead of the weblink address displaying, I would like to display a text.

For example, instead of the text being this: http://www.sap.com

the link would be this: 'Click here'.

Someone know how to achieve this?

Thanks,

Kenneth

1 ACCEPTED SOLUTION
Read only

naimesh_patel
Active Contributor
0 Likes
479

You need to create the Email as the HTML instead of the RAW type. Refer this blog post on how to create formatted Email

http://help-abap.blogspot.com/2008/09/sapconnect-email-with-formatting.html

To create the Hyperlink, you need to use anchor tag in your Email body. Like:


<a href="http://help-abap.blogspot.com/">SAP ABAP Help</a>

This would produce this type of text in your email:

[SAP ABAP Help|http://help-abap.blogspot.com/]

Regards,

Naimesh Patel

I would like to create an Email which contains a web link. But instead of the weblink address displaying, I would like to display a text.

For example, instead of the text being this: http://www.sap.com

the link would be this: 'Click here'.

Someone know how to achieve this?

Thanks,

Kenneth

2 REPLIES 2
Read only

naimesh_patel
Active Contributor
0 Likes
480

You need to create the Email as the HTML instead of the RAW type. Refer this blog post on how to create formatted Email

http://help-abap.blogspot.com/2008/09/sapconnect-email-with-formatting.html

To create the Hyperlink, you need to use anchor tag in your Email body. Like:


<a href="http://help-abap.blogspot.com/">SAP ABAP Help</a>

This would produce this type of text in your email:

[SAP ABAP Help|http://help-abap.blogspot.com/]

Regards,

Naimesh Patel

Read only

0 Likes
479

Thanks, Naimesh. This worked!

Kenneth