+ 4
How can I do?
I want to send an email (by Outlook) to a person with a link and redirect him to a page where that page has already saved and selected his email to later send a certain information database. How can I do the email part?
3 ответов
+ 4
Use the mailto: feature in an <a> tag to do it.
+ 2
thanks :) I try tomorrow and I tell you that such has gone
0
I resolved this problem with a php document that in the own document save emails in array and send mails with a for-each and in the message I add a link to the php document whit a variable. the linked php document take the variable and set in an
<?php
$var = $_GET['variable'];
echo "<input type='mail' value='$var placeholder='ejemplo@ejemplo.es ' />;
?>