1

I want to change the "From" email address in outlook via javascript. I am able to set values for Subject,To,Cc. Please suggest me to achieve this if possible. Thanks in advance.

1 Answers1

0

You could use this SMTP service to change From address.

For example:

<script src="https://smtpjs.com/v2/smtp.js"> </script>

Email.send("from@you.com",
"to@them.com",
"This is a subject", 
 "this is the body", 
 "smtp.yourisp.com", 
 "username", 
 "password");

Reference from:

Sending emails with Javascript

Alina Li
  • 884
  • 1
  • 6
  • 5