This topic is: resolved
- This topic has 2 replies, 2 voices, and was last updated 4 years, 9 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Home › Forums › Quform WordPress › Add html layout to email
Hi Ally
I am using a custom redirect in my child theme (code below)
In the email i need to send as HTML and add the layout shown in the attched image.
The layout needs to be a table with 2 columns / 8 rows with the name of each item shown in image
Any ideas greatly received.
Here is the code i am using to trap and redirect you can see i am already calling and adding other details.
function my_success_redirect_url6($url, Quform_Confirmation $confirmation, Quform_Form $form)
{
$domain=$form->getValueText('quform_6_17');
$webHost=$form->getValueText('quform_6_15');
if ($webHost==1) {
$webHost="Transferring In";
} else {
$webHost="Not Transferring In";
}
$cartID=$form->getValueText('quform_6_16');
$url=('http://www.mydomain.co.uk/?add-to-cart='.$cartID.'&domain_name_meta='.$domain.'&webHost='.$webHost);
return $url;
}
add_action('quform_confirmation_redirect_url_6_1', 'my_success_redirect_url6', 10, 3);
You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
Ta