How to Operate Outlook

Send the sheet you are working on in Excel, to outlook

when working in Excel go to top tool bar, click on file, drop down to 'send to' and you will be given the options to send that page as is or the file as an attachment.

How to delete duplicates E mails in outlook


Hold down the Ctrl key and select all the emails you want to delete, then click the Delete button or press the Delete key.

You can select any number of emails this way. Also, if you select one by mistake, just keep the Ctrl key pressed and click again, it will deselect the email.


If all the emails are together, you can click the first one, then SHIFT click the last and all the ones in between will be selected too.

How do i make the contact form in html send data

 

if you use the HTML "function" call "mailto= xxx".
Avoid using it: it is bad and amateurish design.
If you have a server-side script like php, here is one:
HTML FORM to EMAIL (Php)

Your index.html file:


<html>

<head>
</head>
<body>
<form name='myform' action='emailfwd.php' method='post'>
Your name: <input type='text' name='name' /><rb />
Your password: <input type='password' name='pwd' /><rb />
Your email: <input type='text' name='email' /><rb />
<input type='submit' name='submit' value='Submit' />
</form>
</body>
</html>
(replace <rb /> by their correct form - stupid editor!)
Your emailfwd.php file:

<html>

<head>
</head>
<body>
<?php
$name = $_POST['name'];
$pwd = $_POST['pwd'];
$email = $_POST['email'];
$to = "youremail@whatever.com";
$headers = "From: ".$email. "\r\n";
$subject = "Submitted application";
$msg = $name . " has sumitted a form!\r\n";
$msg .= "Pwd: " . $pwd . "\r\n";
$msg .= "email address: " . $email . "\r\n";
mail($to, $subject, $msg, $headers);
echo ("Mail processed.");
?>
</body>
</html>




No comments:

Post a Comment

chitika

stumbleupon

Related Posts Plugin for WordPress, Blogger...

Infolinks In Text Ads