I have a email template that I want to pass values in to. This I achieve by the following code. I wish to know how to pass 2 variables that way
subject = request.POST.get('inq_sub')
message = request.POST.get('inq_mes')
html_content = render_to_string('customer_inquiry.html',{'subject': subject})