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.
Asked
Active
Viewed 226 times
1 Answers
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:

Alina Li
- 884
- 1
- 6
- 5