winmail.datの開き方(macの場合)

仕事上、たくさんの添付付きメールをいただきます。
今更ですが、たまに「winmail.dat」というファイル名のmac(OSX)標準のメールソフト「MAIL」では開けない添付書類があります。

「winmail.dat」は、MicrosoftのOutlookなどでリッチテキストで送信した際に送られるようです。

解決方法は簡単。gmailに転送すればOKです。

以上。

Thanks for installing the Bottom of every post plugin by Corey Salzano. Contact me if you need custom WordPress plugins or website design.

GoogleのURL送信ページ

URL送信のページ(日本語)
https://www.google.com/webmasters/tools/submit-url?hl=ja

URL送信のページ(英語)
https://www.google.com/webmasters/tools/submit-url

コンテンツ送信用のページ(英語)
http://www.google.com/submityourcontent/

Thanks for installing the Bottom of every post plugin by Corey Salzano. Contact me if you need custom WordPress plugins or website design.

固定枠内へ画像を合わせる(javascript)

縦・横いろいろなサイズの画像を枠内へ収めるjavascript

<script>
function resize(e) {
var size = { width:300, height:200 };
var w = size.width / e.width;
var h = size.height / e.height;
if (w > h) w = h;
e.width *= w;
}

<HTML>
<img src="hoge.jpg" onload="resize(this)">

Thanks for installing the Bottom of every post plugin by Corey Salzano. Contact me if you need custom WordPress plugins or website design.