![]() |
Mysql 5.7 Php 7.3 Guncellemesinden Sonra Smtp Mail Gönderemiyorum - Baskı Önizleme +- AccessTr.neT (https://accesstr.net) +-- Forum: Microsoft Access (https://accesstr.net/forum-microsoft-access.html) +--- Forum: Access Cevaplanmış Soruları (https://accesstr.net/forum-access-cevaplanmis-sorulari.html) +--- Konu Başlığı: Mysql 5.7 Php 7.3 Guncellemesinden Sonra Smtp Mail Gönderemiyorum (/konu-mysql-5-7-php-7-3-guncellemesinden-sonra-smtp-mail-gonderemiyorum.html) Sayfalar:
1
2
|
Mysql 5.7 Php 7.3 Guncellemesinden Sonra Smtp Mail Gönderemiyorum - zetyu - 08/04/2019 Ozanakkaya hocamın hazırlamış olduğu mail gönderme uygulamasından bir süredir SMTP mail gönderme işleminden mail gönderiyordum. ancak 06,04,2019 tarihinden itibaren mail gönderirken mail gönderme başarısız hatası çıkıyor. Hosting firmam ile konuştuğumda aynı tarihte mySQL 5.7 PHP 7.3 güncellemesi yaptığını söyledi. Şu an mail göndermiyorum bana hosting firması smtp auth hatası olduğunu ve aşağıdaki resmi gönderdi. http://schemas.microsoft.com/cdo/configuration/smtpauthenticate kaynak hizmet vermiyor diyor.bu nedenle diyor. bizim kodumuz mySQL 5.7 PHP 7.3 uyumlu değilmi acaba ilginiz için şimdiden teşekkür ederim. -------------------------------------------- https://accesstr.net/konu-acessten-mail-gonderme-smtp-gmail.html ve kısa bir müddet önce hocamn yardımcı olduğu uygulama https://accesstr.net/konu-mail-gonderirken-govdeye-yazi-aralarina-resim-eklemek-ve-satir-ara-bosluklari.html?highlight=mail+resim hata resmi ![]() Cvp: Mysql 5.7 Php 7.3 Guncellemesinden Sonra Smtp Mail Gönderemiyorum - ozanakkaya - 08/04/2019 Merhaba, smtp mail gönderimi ile mysql güncellemesinin alakasının olduğunu sanmıyorum. Sunucunuza, Smtp mail gönderiminde kimlik doğrulamasının (("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = True) olup olmadığını ve hangi portu kullandığını sorun (587 veya 465, kullanıldığı kısım= ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 465) Cvp: Mysql 5.7 Php 7.3 Guncellemesinden Sonra Smtp Mail Gönderemiyorum - zetyu - 08/04/2019 (08/04/2019, 19:38)ozanakkaya yazdı: Merhaba, smtp mail gönderimi ile mysql güncellemesinin alakasının olduğunu sanmıyorum. Hocam cevabınıza teşekkür ederim. port 465 smtpsecure=ssl yaparsanız olur deniyor ama php de vb nasıl bilmiyorum port 465 ayarlıyorum. smtpscure=ssl ![]() Cvp: Mysql 5.7 Php 7.3 Guncellemesinden Sonra Smtp Mail Gönderemiyorum - ozanakkaya - 08/04/2019 Kod içerisinde ssl ayarı ve port ayarı mevcut. Önceki mesajımda da bu ayarlardan bahsetmiştim. Cvp: Mysql 5.7 Php 7.3 Guncellemesinden Sonra Smtp Mail Gönderemiyorum - zetyu - 08/04/2019 (08/04/2019, 19:38)ozanakkaya yazdı: Merhaba, smtp mail gönderimi ile mysql güncellemesinin alakasının olduğunu sanmıyorum. Hocam port 465 ayarladım kod aşağıda ama sonuç olmadı ---------- objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = Me.txtsunucuadresi objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/sendusername") = Me.txtmailadresi objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/sendpassword") = Me.txtmailsifre objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 465 objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = ssl objMessage.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60 objMessage.Configuration.Fields.Update objMessage.Send Cvp: Mysql 5.7 Php 7.3 Guncellemesinden Sonra Smtp Mail Gönderemiyorum - ozanakkaya - 08/04/2019 Merhaba, sunucu firmanız ile görüşmeniz, smtp giden ayarlarını öğrenmeniz gerekiyor. benim verdiğim kodda ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = True şeklinde kod var. Burası True veya False olmalı, ssl veya tls olmamalı. |