20 lines
437 B
PHP
20 lines
437 B
PHP
<?php
|
|
/**
|
|
* Email Header
|
|
*
|
|
* This is the header used if no others are available
|
|
*
|
|
* @author Easy Digital Downloads
|
|
* @package Easy Digital Downloads/Templates/Emails
|
|
* @version 2.1
|
|
*/
|
|
|
|
// Exit if accessed directly
|
|
defined( 'ABSPATH' ) || exit; ?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<title><?php echo get_bloginfo( 'name' ); ?></title>
|
|
</head>
|
|
<body>
|