以下のコードで

function sendMail() {
    window.plugins.webintent.startActivity (
        {
            action: window.plugins.webintent.ACTION_VIEW,
            url: 'mailto:メールアドレス'
        },       
        function () {},
        function () {alert ('Failed to open URL via Android Intent');}
    );
}

以下のエラーが出ます。

Uncaught TypeError: Cannot read property 'webintent' of undefined

Cordovaのwebintentは有効にしてあります。
以下も指定してあります。

<script src="components/loader.js"></script>
<link rel="stylesheet" href="components/loader.css">

何か設定が足りないのかもしれません。
ご教授お願いいたします。

すみません、解決しました。
config.xmlに以下を追加しました。mailではなくてmailtoでした。

<allow-intent href="mailto:*" />