First, every language is dynamic.
What you probably meant is "language running on server side".
A simple way to resolve your question is to use "mailto" HTML.
Example:
<a href='mailto:[email protected]?subject=Assunto&body=conteúdo'>Enviar email</a>
Example with <form>
<FORM Action="mailto:[email protected]?Subject=Assunto" METHOD="POST">
mailto: protocol test:
<br />Assunto
<INPUT name="Subject" value="Test Subject">
<br />Mensagem
<TEXTAREA name="Body">
lorem ipsum
</TEXTAREA>
<br />
<INPUT type="submit" value="Submit">
</FORM>
Disadvantage
The user must have an email client installed and configured.
The vast majority of people do not have it because they use webmail services or messengers like facebook messenger, twitter, hotmail, yahoo, among others.
For Windows users, for example, the user probably has Live Mail or Outlook Express on the screen, however, with no configuration.
You will probably click to send and you will think that the message has even been sent.
The same goes for any other operating systems.
Forms submission services
Another way is to use third-party services. There are several services that provide a URL for "action" of " <form>
".