We have multiple Email Order Confirmations and wondering if there is a way to have different email addresses in the from fields? I see there is a way to have different subject lines by adding a "subject" variable to the .aspx file. Is there something similar for the From Field?
Thanks,
Marty
Hi Marty,
I have not found a way to change the email address from the primary address. You can change the subject line. We change the subject line for the email by filling in a custom field on the order. You can change the subject line in your aspx file by setting the Subject property. For example
<%
Subject = "Custom Subject here";
%>
Jon