我能够使用SMTP服务器发送邮件:
self.smtp_connection.sendmail(
'my_smtp_username@provider.com',
recipients, # list of To, Cc and Bcc mails
mime_message.as_string()
)
但我看不到'my_smtp_username@provider.com‘IMAP帐户中“发送”框中发送的邮件。我怎样才能在这个盒子里看到邮件?
当我尝试通过INTENT发送电子邮件(例如使用gmail客户端)时,在我的电子邮件客户端中看不到已发送的电子邮件。代码是:
Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_EMAIL, new String[] { to });
email.putExtra(Intent.EXTRA_SUBJECT, subject);
email.putExtra(Intent.EXTRA_TEXT, message);
email.setType("application/zip");
e
有办法在gmail里打开吗?如果我用电子邮件发送这个:
<a href="whatsapp://send?text=wow%20check%20this%20out!%20http%3A%2F%2Fwww.zeemanshop.com%2Fassortiment%2Fheren">deel dit bericht via Whatsapp!</a>
通过Whatsapp迪尔·贝里克特!
如果我把这个发送到iphone邮件,它就能工作,但是gmail不承认这种自定义的方案url。有没有一种方法可以让这个操作不需要一个safari/chrome重定向
我正在测试延迟送达时间是否有效,并查看这些电子邮件是否未发送。我在发件箱里什么也看不到。如果我只是.Send并注释掉.DeferredDeliveryTime,电子邮件就会被发送。此外,我已经尝试在Outlook中手动更改不提前交付,这是有效的。所以我不确定VBA出了什么问题。
Option Explicit
Private Sub CommandButton1_Click()
Dim olApp As Outlook.Application
Dim olMail As Outlook.MailItem
Dim olAccount As Outlook.Account
Set olApp