更改显示给Gmail中的收件人的电子邮件地址

时间:2016-08-09 20:04:17

标签: google-chrome email gmail

我想知道如何更改我的电子邮件地址以包含一个大写字母(这样的电子邮件地址是相同的)。例如,xyz@gmail.com应显示为xyz@gmaIl.com,其中“i”已更改为“I”。在这种情况下,电子邮件地址保持不变,但显示给收件人的内容不同。

我已经探索了Gmail的'发送邮件为'功能,但它引发了我可以“已经将其作为[电子邮件ID]发送”的错误。

非常感谢。

1 个答案:

答案 0 :(得分:0)

只需更改邮件中From标题值的大小。

JavaScript和JQuery中的示例:

// You can get an access token at the OAuth 2.0 Playground for testing
// https://developers.google.com/oauthplayground/
var accessToken = 'ya29...';
// The Gmail API requires url safe Base64 
// (replace '+' with '-', and '/' with '_')
var mail = btoa([
  'From: emTHOLIN@gmail.com\r\n',
  'To: emtholin@gmail.com\r\n',
  'Subject: Subject Text\r\n\r\n',

  'This is the message text'
].join('')).replace(/\+/g, '-').replace(/\//g, '_');

$.ajax({
  method: 'POST',
  url: 'https://www.googleapis.com/gmail/v1/users/me/messages/send',
  headers: {
    'Authorization': 'Bearer ' + accessToken,
    'Content-Type': 'application/json'
  },
  data: JSON.stringify({
    raw: mail
  })
});

如您所见,这会更改电子邮件的显示大小:

enter image description here