You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
386 B
PHP
27 lines
386 B
PHP
<?php
|
|
/**
|
|
* Mail Basic Template.
|
|
*
|
|
* Override this by copying it to currenttheme/wp-job-openings/mail/basic.php
|
|
*
|
|
* @package wp-job-openings
|
|
* @version 3.3.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{mail-subject}</title>
|
|
</head>
|
|
|
|
<body>
|
|
{mail-content}
|
|
</body>
|
|
</html>
|