我正在开发一个小应用程序,我想在其中包含一个按钮,该按钮将打开 Outlook 电子邮件编辑器并向用户呈现空内容,但特定主题可供用户填写并发送回特定电子邮件。有谁知道这是怎么做到的吗?我在不同的解决方案中读到的内容不起作用:例如,这会打开一个失败的网址import ipyvuetify as vv_btn = v.Btn(class_ = 'mx-2 light-blue darken-1', href = 'href="mailto:vinoth@email.com?subject=title&body=The message"', children = ['send email?'])v_btn其他选项可能是创建一个 ipyvuetify 模板:class sendemail(v.VuetifyTemplate): subject = Unicode('').tag(sync=True) label = Unicode('email').tag(sync=True) template = Unicode('''<v-btn color="primary" class="ma-1" @click="sendemail(subject)" > {{ theemail }} </v-btn> <script> export default { methods: { sendemail (subject) { var email = "whatever@company.org"; document.location = "mailto:" + email +"?subject=" + subject + "&body=the body"; }, }, } </script>''').tag(sync=True) emailitBtn = clipboardBtn(subject='This is the subject of the email', label='send email')emailitBtn但这个解决方案也不起作用。有任何想法吗?
1 回答
哆啦的时光机
TA贡献1779条经验 获得超6个赞
也许尝试一下
import ipyvuetify as v
v_btn = v.Btn(class_ = 'mx-2 light-blue darken-1',
href = 'mailto:vinoth@email.com?subject=title&body=The message',
target = '_blank',
children = ['send email?'])
v_btn
我删除了 href 属性中的“href”,并添加了 target='_blank' 以在新窗口中打开它,它似乎可以工作。
添加回答
举报
0/150
提交
取消