Can I send email using javascript

后端 未结 6 1747
日久生厌
日久生厌 2021-01-04 09:11

Is it possible to send emails using just javascript?

6条回答
  •  清酒与你
    2021-01-04 09:32

    You can redirect to a mailto:someone@example.com?cc=someone_else@example.com&subject=This%20is%20the%20subject&body=This%20is%20the%20body address which tells the browser to fire up the mail client which then makes the mail ready to send - the user just has to hit "submit".

    Code:

    document.location="mailto:someone@example.com?cc=someone_else@example.com&"+
        "subject=This%20is%20the%20subject&body=This%20is%20the%20body";
    

提交回复
热议问题