iT邦幫忙

0

outlook 回信格式設定

  • 分享至 

  • xImage

請教大家
office2021 回信中在outlook 的收件人顯示格式, 是否能設定只顯示名稱, 不顯示後方的信箱地址呢? 或者這是由信箱SERVER來控制呢? 謝謝
https://ithelp.ithome.com.tw/upload/images/20240825/20003705gHYVThFtum.png

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中
0
林門神JanusLin
iT邦超人 1 級 ‧ 2024-08-26 08:22:38
最佳解答

這麼在意這功能的話
改用其他郵件軟體

0
derek_lan
iT邦新手 2 級 ‧ 2024-08-26 16:47:54

樓主在意的是你自己看到的樣子,還是收件者看到的樣子?
這不全然是你自己可以決定的

0
YC
iT邦研究生 1 級 ‧ 2024-08-27 11:01:07

手上沒 outlook,不過你可以自己用 php 改/images/emoticon/emoticon01.gif

<?php
// Multiple recipients
$to = 'johny@example.com, sally@example.com'; // note the comma

// Subject
$subject = 'Birthday Reminders for August';

// Message
$message = '
<html>
<head>
  <title>Birthday Reminders for August</title>
</head>
<body>
  <p>Here are the birthdays upcoming in August!</p>
  <table>
    <tr>
      <th>Person</th><th>Day</th><th>Month</th><th>Year</th>
    </tr>
    <tr>
      <td>Johny</td><td>10th</td><td>August</td><td>1970</td>
    </tr>
    <tr>
      <td>Sally</td><td>17th</td><td>August</td><td>1973</td>
    </tr>
  </table>
</body>
</html>
';

// To send HTML mail, the Content-type header must be set
$headers[] = 'MIME-Version: 1.0';
$headers[] = 'Content-type: text/html; charset=iso-8859-1';

// Additional headers
$headers[] = 'To: Mary <mary@example.com>, Kelly <kelly@example.com>';
$headers[] = 'From: Birthday Reminder <birthday@example.com>';
$headers[] = 'Cc: birthdayarchive@example.com';
$headers[] = 'Bcc: birthdaycheck@example.com';

// Mail it
mail($to, $subject, $message, implode("\r\n", $headers));
?>

我要發表回答

立即登入回答