Send Bulk Emails With Excel Range on Mail Body | Advanced VBA in Hindi

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024
  • Send Bulk Emails With Excel Range on Mail Body | Advanced VBA in Hindi
    🔴 Subscribe for more videos just like this: bit.ly/2PUQwXk
    🎧In this video, you will learn
    ► Send Bulk Emails with excel range on mail body
    ► How to send bulk emails in vba
    ► How to copy range to mail body and send mail
    Hope you found this video useful. Please like, share, and subscribe to our channel. This will motivate us to create more good content. Thanks!
    🎬Watch our most recent videos: / automationfever
    💜You Might be Interested in (Free Tutorials):
    Basic VBA Tutorials (Hindi)👉 • Why Should Learn VBA |...
    Advanced VBA Tutorials (Hindi)👉 • Send Outlook Mail in V...
    Excel VBA Projects (Hindi) 👉 • Add & Change Sheet Tab...
    VBA Outlook Automation (Hindi)👉 • Send Outlook Mail in V...
    Excel Tips & Tricks (Hindi)👉 • Copy From Clipboard - ...
    How to copy multiple ranges on email body👉 • How to copy multiple r...
    ➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖
    🎧Do watch our Other VBA Videos (Hindi) 👉
    Schedule a mail to send later 👉 • Schedule a mail to sen...
    Move Emails From One Folder To Another 👉 / 96xwq4i0z1
    Auto Reply On Email With Template 👉 • Auto Reply On Email Wi...
    How to send pivot table on mail body 👉 • How to send pivot tabl...
    ➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖〰➖
    -------------------------------SOCIAL-------------------------------
    🛠️ If you have any doubt or query, drop us an email: queries.automation@gmail.com
    🌎Website: www.automation...
    👥Facebook: / feverautomation
    🐦Twitter: / automationfever
    📸Instagram: / automationfever
    📕Blogger: automationfeve...
    🌎WhatsApp : +91 93100 73387
    ----------------------------------------------------------------------
    #BulkEmails #VbaBulkMailSend #VbaOutlook #VbaAutomation #AdvancedVba #OutlookAutomation #VbaTraining #AdvancedVba #ExcelVba #LearnVba #AutomationFever #ShaanAnsari

Комментарии • 44

  • @KuldeepSingh-nq1vi
    @KuldeepSingh-nq1vi Год назад +2

    Useful Video as usual.. Keep it up Sir..

  • @harshadbarot
    @harshadbarot 9 месяцев назад +1

    You are really genius man, this macro help me lot

    • @AutomationFever
      @AutomationFever  9 месяцев назад

      Thanks! I'm glad the macro was useful for you.

  • @ChandanaDas-xi8og
    @ChandanaDas-xi8og Год назад +2

    Sir how to add default signature on it. Very usefull content sir. Thank you

  • @user-im6vd7fw5b
    @user-im6vd7fw5b Год назад

    Very Precise and Useful Video.
    This helped me to automate my bulk emails.
    Sir, need you help for next level of automation which can take multiple table range in Mail body from multiple sheets.

  • @LearningPower-bh8tl
    @LearningPower-bh8tl 11 месяцев назад +1

    Nice video ❤

  • @sivanandpottabathini118
    @sivanandpottabathini118 2 месяца назад

    Very useful video.Sir, can you do 1 video on automated mails using If condition,If condition pass mail send to 1group of people else rest ofbthe group.

  • @akshaygawale8079
    @akshaygawale8079 Год назад +1

    Thank you so much Sir! Very useful! But I am getting error “runtime error 287 : Application defined or object defined error “
    Can you please guide me?

  • @gulrezmansoori-nq1op
    @gulrezmansoori-nq1op 2 месяца назад

    This is really nice. could you also share how I can add Cc and Bcc

  • @ramkshetty
    @ramkshetty 3 месяца назад

    too good

  • @nirmaleshrahate6871
    @nirmaleshrahate6871 4 месяца назад

    Very usefull great work sir
    Bu I have 1 question
    If in report sheet have no data available and same time
    I data sheet have available
    Then how resolve error

  • @АхмедЭлкади
    @АхмедЭлкади Год назад

    Well done 👍 great job 👏... Could you put this sheet in comments ❤

    • @AutomationFever
      @AutomationFever  Год назад +3

      Please find the code below
      Sub SendRegionWiseReportOnEmail()
      Dim OutApp As New Outlook.Application
      Dim mail As Outlook.MailItem
      Dim doc As Word.Document
      Dim r As Integer
      If (Sheet1.AutoFilterMode = True) Then
      Sheet1.AutoFilterMode = False
      End If
      For r = 2 To Sheet8.Cells(Rows.Count, 1).End(xlUp).Row
      Set mail = OutApp.CreateItem(olMailItem)
      With mail
      .BodyFormat = olFormatHTML
      .Display
      .To = Sheet8.Range("C" & r).Value2
      .Subject = Sheet8.Range("D" & r).Value2
      Set doc = .GetInspector.WordEditor
      Sheet8.Range("E" & r).Copy
      doc.Range.Paste
      doc.Range.Characters.Last.Text = vbNewLine
      Sheet1.Range("A1").CurrentRegion.AutoFilter _
      Field:=2, _
      Criteria1:=Sheet8.Range("B" & r).Value2
      Sheet1.Range("A1").CurrentRegion.SpecialCells(xlCellTypeVisible).Copy
      doc.Range.Characters.Last.Paste
      Application.CutCopyMode = False
      doc.Range.Characters.Last.Text = vbNewLine & vbNewLine & _
      "Best Regards," & vbNewLine & _
      "Shaan Ansari"
      '.Send
      End With
      Next r
      Sheet1.AutoFilterMode = False
      End Sub

  • @SKumar-tw8jj
    @SKumar-tw8jj Год назад

    Can you please suggest how to past excel range data in outlook with autofit with contents

  • @aamirkhan-hi1qk
    @aamirkhan-hi1qk 7 месяцев назад

    Vedio is very useful,
    And we have applied the same steps but we are facing the problem in writing code.
    So please share the code

    • @AutomationFever
      @AutomationFever  7 месяцев назад

      I appreciate you watching the video and leaving comments.
      Please fill out the following form, and our team will provide you the code forms.gle/CnnDpYBaRHoGwCeZ9

  • @Vaibhav21May92
    @Vaibhav21May92 Год назад

    @Automation Fever can I get this code in text format or do I need to write it down manually ?

    • @AutomationFever
      @AutomationFever  7 месяцев назад

      Sorry for responding so late.
      Please fill out the following form, and our team will provide you the code forms.gle/CnnDpYBaRHoGwCeZ9

  • @bharatmakwana4345
    @bharatmakwana4345 Месяц назад

    Sir macro code daldo

  • @user-vj8rz9sz9q
    @user-vj8rz9sz9q Год назад +1

    Hi the Sheet10.Range("B1").CurrentRegion.AutoFilter
    Field:=2,
    Criteria 1:=Sheet3.Range("A2").Value2
    gives me the error for filter the data please help

  • @Shunno990
    @Shunno990 Год назад

    Dear Sir,
    Could you please provide the excel file with videos, it can help us to learn easily.

  • @sanjanamhatre8926
    @sanjanamhatre8926 2 месяца назад

    This code is not working.. I'm getting Syntax error

  • @SonuSingh-lu8qd
    @SonuSingh-lu8qd Месяц назад

    Can you Please send me excel macro

  • @user-ie6jr3hx5v
    @user-ie6jr3hx5v Год назад

    Typed same code but getting error ,object missing
    .Runtime error 424

  • @NiteshPandey-xd9dt
    @NiteshPandey-xd9dt 5 месяцев назад

    Any background mail option by VBA, foreground m wait karna pad raha hai.

  • @shortvedioa786
    @shortvedioa786 5 месяцев назад

    same cheez kya gmail me kr skte hai kya

    • @AutomationFever
      @AutomationFever  5 месяцев назад

      Gmail ki email ko aapko Outlook me configure karna hoga fir aap aesa kr payege

    • @shortvedioa786
      @shortvedioa786 5 месяцев назад

      Iske liye koi delicated vedio hai apka

  • @amarendrahaloi2564
    @amarendrahaloi2564 Год назад

    sir how to write the EMAIL BODY

  • @aniljadhav5971
    @aniljadhav5971 11 месяцев назад

    How to insert button send regionwise shortfall

  • @SachinKumar-zt6fy
    @SachinKumar-zt6fy 6 месяцев назад

    Sir isme cc bhi karna ho to kisi ko

    • @AutomationFever
      @AutomationFever  6 месяцев назад

      cc property ka use krna hoga same aese hi jaise To property ka kiya hai

  • @I5EEYOU
    @I5EEYOU 11 месяцев назад

    Doc.Range.Characters.Last.Paste
    Run Time Error 4198 Command Failed

    • @AutomationFever
      @AutomationFever  11 месяцев назад

      This usually happens when an incorrect line of code compiles into the source code of the program. Do one thing, use later binding and try again

  • @gupta556
    @gupta556 4 месяца назад

    Can you mail the file

  • @sameerwagh409
    @sameerwagh409 Год назад

    Sir send vba code fir this