Sorgu için arama sonuçları: RangetoHTML

  1. D

    excel den mail atarken text gibi gönderiyor

    ...şimdiden. Sub Mail_AT() 'For Tips see: http://www.rondebruin.nl/win/winmail/Outlook/tips.htm 'Don't forget to copy the function RangetoHTML in the module. 'Working in Excel 2000-2013 Dim rng As Range Dim OutApp As Object Dim OutMail As Object With Application...
  2. Y

    maıl gonder kod revıze

    ...On Error Resume Next With OutMail .To = "" .CC = "" .BCC = "" .Subject = "" .HTMLBody = RangetoHTML(rng) .Display 'göndermek için .Send End With On Error GoTo 0 With Application .EnableEvents = True...
  3. S

    Macro ile mail Gönderen

    ...gerekiyor, aşağıya hangi kodu eklemeliyim On Error Resume Next With OutMail .To = "alici@mail.adresi" .CC = "" .BCC = "" .Subject = "This is the Subject line" .HTMLBody = RangetoHTML(rng) .Display 'or use .Send End With On Error...
  4. Y

    makro ile mail

    ...bu hata mevcut zaten bu hatayı kaldıra bilirmiyiz ben denedim olmadı. Sub Mail_Range_Outlook_Body() ' Don't forget to copy the function RangetoHTML in the module. ' Working in Office 2000-2007 Dim rng As Range Dim OutApp As Object Dim OutMail As Object With Application...
  5. C

    Mail boş gidiyor

    ...renklendirdiğim yere HtmltoRange eklediğimde ise Sub or Function not defined hatası vermekte. " You need to use this module with the RangetoHTML subroutine." ne demek? Nasıl ekleniyor? Bilemedim. Yardımcı olabilir misiniz. Sub Mail() ' You need to use this module with the RangetoHTML...
  6. K

    Mail göndermede imza ekleme

    ...With OutMail .To = [b1] ' MAİL ADRESİ .CC = [b2] .BCC = "" .Subject = "Sipariş Hk." .HTMLBody = RangetoHTML(rng) .Display .Send End With On Error GoTo 0 With Application .EnableEvents = True .ScreenUpdating =...
  7. K

    Mail gönderme ve kayıt işlemi hk.

    ...With OutMail .To = [b1] ' MAİL ADRESİ .CC = [b2] .BCC = "" .Subject = "Sipariş Hk." .HTMLBody = RangetoHTML(rng) .Display .Send End With On Error GoTo 0 With Application .EnableEvents = True .ScreenUpdating =...
  8. T

    Mail Makrosu - "To" kısmı Hücreden Gelsin

    Option Explicit Sub Mail_Sheet_Outlook_Body() ' Don't forget to copy the function RangetoHTML in the module. ' Working in Office 2000-2007 Dim rng As Range Dim OutApp As Object Dim OutMail As Object With Application .EnableEvents = False .ScreenUpdating = False...
  9. spacebar

    mail gönderme kod yardımı

    ...ilgili bir sorun.yardımcı olursanız sevinirim. teşekkürler.... Sub Mail_Range_Outlook_Body() ' Don't forget to copy the function RangetoHTML in the module. ' Working in Office 2000-2010 Dim rng As Range Dim OutApp As Object Dim OutMail As Object With Application...
  10. M

    Butona basıldığında mail gönderme

    ...olursanız çok sevinirim.. Teşekkürler Dim Adres As String Sub Mail_Selection_Range_Outlook_Body() ' Don't forget to copy the function RangetoHTML in the module. ' Working in Office 2000-2010 Dim rng As Range Dim OutApp As Object Dim OutMail As Object Set rng = Nothing...
  11. D

    Outlook ile mail gönderme

    ...Next With OutMail .To = [F1] .CC = "" .BCC = "" .Subject = [A1] + " " + [B1] .HTMLBody = RangetoHTML(rng) .Display End With On Error GoTo 0 With Application .EnableEvents = True .ScreenUpdating = True End...
  12. T

    2 makro 1 Mail

    ...Ekli dosyada tam olarak anlatmak istediğimi çizerek gösterdim. Şu andaki makro; Sub Send_Row() ' Don't forget to copy the function RangetoHTML in the module. ' Working in Office 2000-2007 Dim OutApp As Object Dim OutMail As Object Dim cell As Range Dim rng As Range Dim...
  13. E

    Gönder butonuna basınca gönderi penceresi açılmasın

    ...işlem yapılabilirmi.. Kullandığım kodlar.. Option Explicit Sub Mail_Range_Outlook_Body() ' Don't forget to copy the function RangetoHTML in the module. ' Working in Office 2000-2007 Dim rng As Range Dim OutApp As Object Dim OutMail As Object With Application...
  14. E

    gönderilen maillere otomatik ''hight'' bayrağı ekleme

    ....CC = "xxxxxxxxxxxxxxxxx" .BCC = "" .Subject = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" .HTMLBody = RangetoHTML(rng) .Display 'or use .Send End With On Error GoTo 0 With Application .EnableEvents = True .ScreenUpdating = True End...
Üst