cancel
Showing results for 
Search instead for 
Did you mean: 

Send Email to outlock

former_member626380
Participant
0 Kudos

Hi all

I'm Using HTML to send emails from sap to outlook and i created Pushbutton Approval

how to send replay email if click approval?

this is my code to create a pushbutton.

APPEND '<input type = Submit name = Approve value = Approve />' TO email_tex.

Sandra_Rossi
Active Contributor

To send "reply" email, that means send an email whose domain is routed to your company (like xxx @ yourcompany.com) that is:

  1. internally routed to your SAP server
  2. and ABAP code to process the "inbound email"

Most of configuration is to be designed and done by your IT department and SAP administrator (ask them), except ABAP code (search SAP Web site for inbound or incoming email).

Are you sure an email is the "best" solution? Not a HTTP request? (with single sign-on?) Or anything else...

NB: maybe I misunderstood your question "Send Email to Outlook". Do you mean sending the email directly to another person? Then it's not an ABAP question. This hyperlink prepares an email but the user must confirm: <a href="mailto:jane.doe@yourcompany.com">Approve</a> and you can prepare the body, etc. or you can do the same with <input... You can search the Web for the exact code.

FredericGirod
Active Contributor

Why did you select all these tags ? Abap Testing ? really ?

matt
Active Contributor

I'm still figuring out how HTML sends emails.

Sandra_Rossi
Active Contributor
0 Kudos

EDIT: there was a "typo" in my Aug 22nd comment, the second occurrence of yourcompany . com"> was originally:

<a href="mailto:jane.doe@yourcompany.com">Send email</a>

Accepted Solutions (0)

Answers (1)

Answers (1)

raymond_giuseppi
Active Contributor
0 Kudos

Is your html similar to html form mail (w3schools)