hello
I am using code as below in On Submit code - after sending email
<?php
$from = $replyto_email ="my@mail.com";
$fromname = $replyto_name = "My Name";
$recipient = $_POST['text_8'];
$subject = "my subject";
$html_message = "<p> some text </p>";
$ccemails = $bccemails = $attachments = "";
mosMail($from, $fromname, $recipient, $subject, $html_message, true, $ccemails, $bccemails, $attachments, $replyto_email, $replyto_name );
?>
is it possible to insert a variable in the main body? something like 'Hello text_0 bla bla' so the user will get Hello Mark bla bla??
please help🙂
cheers
HUbert
I am using code as below in On Submit code - after sending email
<?php
$from = $replyto_email ="my@mail.com";
$fromname = $replyto_name = "My Name";
$recipient = $_POST['text_8'];
$subject = "my subject";
$html_message = "<p> some text </p>";
$ccemails = $bccemails = $attachments = "";
mosMail($from, $fromname, $recipient, $subject, $html_message, true, $ccemails, $bccemails, $attachments, $replyto_email, $replyto_name );
?>
is it possible to insert a variable in the main body? something like 'Hello text_0 bla bla' so the user will get Hello Mark bla bla??
please help🙂
cheers
HUbert