Hello,
- Simply set the charset for the $mail Object. Example:
$mail->CharSet = "UTF-8";
Make sure that you add the above line of code anywhere after this line: $mail = new PHPMailer(); .
- You will need to Translate this in the Form's HTML Code itself. Simply find the following code:
name="template-contactform-email"
and replace the email with your Translated Text.
- This is because your Submit Button's name Attribute does not follow the Default Codes, Make sure that your Submit Button's name Attribute value is always: name="template-contactform-submit" (matching the prefix).
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.