以HTML格式发送电子邮件表单而不查看Outlook

时间:2013-10-28 12:06:11

标签: html email outlook

我们正在探索邮件表单的不同功能。 (我们都不是HTML',而是VB.net的。)

我找到并理解的代码如下

    <!DOCTYPE html>
<html>
<body>

<h3>Send e-mail to someone@example.com:</h3>

<form action="MAILTO:someone@example.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name" value="your name"><br>
E-mail:<br>
<input type="text" name="mail" value="your email"><br>
Comment:<br>
<input type="text" name="comment" value="your comment" size="50"><br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>

</body>
</html>

这将打开Outlook程序,用户必须单击Outlook中的发送/接收。

我是否可以在不显示Outlook程序的情况下以HTML格式发送电子邮件表单?如上例所示?

1 个答案:

答案 0 :(得分:0)

这里我粘贴了一个完整的代码,用于发送邮件而无需打开任何Outlook或使用gmail凭据等。它使用PHP发送邮件。希望这能帮助你。      

if(isset($_POST['submit'])) {

if(trim($_POST['contactname']) == '') {
    $hasError = true;
} else {
    $name = trim($_POST['contactname']);
}

if(trim($_POST['subject']) == '') {
    $hasError = true;
} else {
    $subject = trim($_POST['subject']);
}

if(trim($_POST['ContactNum']) == '' && is_numeric($_POST['ContactNum'])) {
    $hasError = true;
} else {
    $Contacting = trim($_POST['ContactNum']);
}

//Check to make sure sure that a valid email address is submitted 
if(trim($_POST['email']) == '' && preg_match("/^([a-zA-Z0-9])+([a-zA-Z0-9\._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9\._-]+)+$/",$_POST['email']))  {
    $hasError = true;
}  else {
    $email = trim($_POST['email']);
}
if(trim($_POST['message']) == '') {
    $hasError = true;
} else {
    if(function_exists('stripslashes')) {
        $comments = stripslashes(trim($_POST['message']));
    } else {
        $comments = trim($_POST['message']);
    }
}

//----------------------Email Validation-----------------//
    function EmVal($e)
    {
        return preg_match("/^([a-zA-Z0-9])+([a-zA-Z0-9\._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9\._-]+)+$/",$e);
    }


//If there is no error, send the email
if(!isset($hasError)) {
        $emailTo = 'abc@abc.com';
        $body = "Name: $name \n\nEmail: $email \n\nSubject: $subject \n\nComments:\n $comments \n\nContact Number:\n $Contacting";
        $headers = 'From: WebBestow <'.$emailTo.'>' . "\r\n" . 'Reply-To: ' . $email;

        mail($emailTo, $subject, $body, $headers);
        $emailSent = true;}


}
 ?>

您可以根据自己的要求修改字段。并设置action =“youpage.php”。此代码应该在yourpage.php的html文档中