Tag: 谷歌应用程序

有没有其他的谷歌应用程序的邮件?

Google停止免费提供Google Apps。 有没有其他的办法可以把你自己的域名与一个好的邮件服务器链接成Gmail? 所以注册邮件提供商与他自己的域名。

我怎样才能避免谷歌邮件服务器要求我通过浏览器login?

我正尝试使用Google Appsconfiguration的电子邮件从Django发送电子邮件,我在settings.py文件中的configuration如下所示: EMAIL_HOST = 'smtp.gmail.com' EMAIL_HOST_USER = 'contact@mydomain.com' EMAIL_HOST_PASSWORD = 'password' EMAIL_PORT = 587 EMAIL_USE_TLS = True 当我尝试使用以下方式发送电子邮件时: from django.core.mail import send_mail send_mail("Happy new year", "We wish you the best for 3001", "contact@mydomain.com", ["someuser@gmail.com"]) 我得到以下错误: SMTPAuthenticationError: (535, '5.7.1 Please log in with your web browser and then try again. Learn more at 5.7.1 https://support.google.com/mail/bin/answer.py?answer=78754 k2sm758604obl.14') […]

在Gmail中撰写邮件的URL(包含完整的Gmail界面,指定给,密件抄送,主题等)

我发现一个post ,提供了一个只打开撰写邮件窗口的链接的例子。 不过,我希望能够用完整的Gmail界面打开一个窗口,但是可以编写一个新的消息。 当然这是有效的: https://mail.google.com/mail/u/0/#compose 但是,我还想添加一个主题,密件抄送等。我尝试了类似以下内容,但无济于事: https://mail.google.com/mail/?to=inbox@example.com&bcc=admin@example.com&subject=Hey#compose 有任何想法吗? 谢谢。

错误:invalid_client没有应用程序名称

我正在为我的应用程序使用Google Apps API,并尝试使用OAuth2对其进行授权。 我使用Google API控制台创build了一个项目和一个应用程序。 我正在使用以下URL进行授权: https://accounts.google.com/o/oauth2/auth&scope=https://www.googleapis.com/auth/admin.directory.user&redirect_uri=urn:ietf:wg:oauth:2.0:oob&response_type=code&client_id=(my application clientid) 我得到以下错误, Error: invalid_client no application name Request Details 我已经validation了pipe理员SDK的状态,甚至是状态。

必须首先发出一个STARTTLS命令。 使用Java和Google Apps发送电子邮件

我正在尝试使用Bill Lizard的代码使用Google Apps发送电子邮件。 我得到这个错误: Exception in thread "main" javax.mail.SendFailedException: Sending failed; nested exception is: javax.mail.MessagingException: 530 5.7.0 Must issue a STARTTLS command first. f3sm9277120nfh.74 at javax.mail.Transport.send0(Transport.java:219) at javax.mail.Transport.send(Transport.java:81) at SendMailUsingAuthentication.postMail(SendMailUsingAuthentication.java:81) at SendMailUsingAuthentication.main(SendMailUsingAuthentication.java:44) 比尔的代码包含下一行,这似乎与错误有关: props.put("mail.smtp.starttls.enable","true"); 但是,这并没有帮助。 这些是我的import陈述: import java.util.Properties; import javax.mail.Authenticator; import javax.mail.Message; import javax.mail.MessagingException; import javax.mail.PasswordAuthentication; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; 有谁知道这个错误?

在Google电子表格中刷新由自定义函数检索的数据

我已经写了一个自定义的谷歌应用程序脚本,将收到一个ID和从Web服务(价格)获取信息。 我在电子表格中使用这个脚本,它工作得很好。 我的问题是,这些价格变化,我的电子表格并没有得到更新。 我如何强制它重新运行脚本并更新单元格(而不需要手动检查每个单元格)?

通过C#通过Google Apps帐户发送电子邮件

我有一个标准的Google Apps帐户。 我已经通过Google Apps设置了一个自定义域。 使用Gmail界面时,我可以通过Google Apps成功收发电子邮件。 但是,我想通过代码发送电子邮件。 为了尝试这个,我一直在尝试下面的代码: MailMessage mailMessage = new MailMessage(); mailMessage.To.Add("someone@somewhere.com"); mailMessage.Subject = "Test"; mailMessage.Body = "<html><body>This is a test</body></html>"; mailMessage.IsBodyHtml = true; // Create the credentials to login to the gmail account associated with my custom domain string sendEmailsFrom = "emailAddress@mydomain.com"; string sendEmailsFromPassword = "password"; NetworkCredential cred = new NetworkCredential(sendEmailsFrom, sendEmailsFromPassword); […]

脚本来总结数据没有更新

我有一个时间表数据的Google电子表格; 它每个月都有一个表格,每个表格有六个列块,每个客户端一个块。 我创build了一个汇总表,获取每个客户端的总数并将其显示在列表中: function getClientTotals(sheetname, colcount) { colcount = colcount ? colcount : 6; var res; var ss = SpreadsheetApp.openById('myid_goes_here'); if(ss) { res = []; var totrow = ss.getRange(sheetname + '!A1:ZZ1').getValues()[0]; for(var i = 0; i < totrow.length; i += colcount) { res.push([totrow[i], totrow[i + colcount – 1]]); } } return res; } 然后,我刚刚在包含=getClientTotals($C$7,$C$8)汇总表中添加了一个单元格,该单元格传递了月份的表名和每个客户端的列数(在“模式”修改的情况下)。 这一切工作正常,但是,它不会更新源数据更改时。 […]