Good afternoon, there is an application in which there is a form. We fill it with data and want to send a letter to some users. What we want to implement: so that the person opens the letter in outlook (!) And there was a table in the body with the data that we sent. It is impossible to transfer html table via mailto, what are the ways of such a solution? How to automate, so that every time you manually don't create a table there and not enter data. thank
- The mailto protocol has a "limit" on the number of characters. Therefore, the table there with all the desire does not fit. - nick_n_a
- @nick_n_a well, exactly. - Konstantin Kožuchov
- Use the library to work with the smtp protocol (specifying the parameters of the mail-sending server). The letter can be sent only on behalf of the server. In the attachment, you can add html with the table. But sending will look very different than mailto protocol. - nick_n_a
- In outlook using ASP NET, you can’t pass such a letter. The answer to the question "in this form - no way." - nick_n_a pm
- @nick_n_a thanks for the advice. - Konstantin Kožuchov
|