I was wondering if I could add a check box that says "I would like a receipt" to my form so that a copy of the filled out form goes to the user only when they choose to get a notification. I know I can have this done automatically everytime but I'd rather give my users this option. Thanks in advance. I love this app its a great tool the way that things can be modified.
Could I also rather than a check box make the sending of a receipt based on my users email like.
<?
if ( $myUsersEmail == "abc123@mydomian.com" ) {
//Do this: Send notification email
} else {
//Do Nothing and just send form normally
}
?>
if this is possible where in the code would I go to implement my idea would it be in post-functions.php around line 1122? Thanks in advance.
