Looking for someone to make me a flawless and easy-to-use script to send out emails.
The emails must be sent through https://email25.godaddy.com/webmail.php with the template I choose. I refuse to continue using AutoHotKey because the coordinates never appear to be the same regardless of the size of the window.
Current AHK script which used to work. I have noticed that the coordinates change randomly even when they shouldn't.
Each email is unique to the person. It must have:
- First name
- Organization
You can either provide a solution to why this isn't working or create a new non-AHK script.
Paying $25
If you need to contact me, PM me here or DM Xeniiox#4545 on Discord. Thanks.
The emails must be sent through https://email25.godaddy.com/webmail.php with the template I choose. I refuse to continue using AutoHotKey because the coordinates never appear to be the same regardless of the size of the window.
Current AHK script which used to work. I have noticed that the coordinates change randomly even when they shouldn't.
Each email is unique to the person. It must have:
- First name
- Organization
Code:
^j::
Loop {
Loop, 40 {
Sleep, 1000
Click, 976, 270 ; Clicks email cell
Sleep, 900
Send, {enter}{shift down}{home}{shift up} ; selects content
Sleep, 900
Send, {control down}{c}{control up} ; copies
Sleep, 900
Click, 119, 11 ; Clicks first tab which should be workspace
Sleep, 900
Click, 504, 330 ; Clicks the template
Sleep, 20
Click, 504, 330 ; Clicks the template
Sleep, 6000
Click, 184, 144 ; clicks email area
Sleep, 900
Send, {control down}{v}{control up} ; pastes
Sleep, 900
Click, 1098, 12 ; clicks chrome window
Sleep, 900
Click, 320, 13 ; Clicks the second tab which should be sheets
Sleep, 900
Click, 642, 270 ; Clicks name cell
Sleep, 2000
Click, 642, 270 ; Clicks name cell
Sleep, 900
Send, {enter}{shift down}{home}{shift up} ; selects content
Sleep, 900
Send, {control down}{c}{control up} ; copies
Sleep, 900
Send, {alt down}{tab}{alt up} ; goes back to compose window
Sleep, 900
Click, 54, 372 ; clicks the area for name
Sleep, 900
Send, {control down}{v}{control up} ; pastes
Sleep, 900
Click, 1098, 12 ; clicks chrome window
Sleep, 900
Click, 314, 270 ; Clicks organization cell
Sleep, 900
Send, {enter}{shift down}{home}{shift up} ; selects content
Sleep, 900
Send, {control down}{c}{control up} ; copies
Sleep, 900
Send, {alt down}{tab}{alt up} ; goes back to compose window
Sleep, 900
Click, 181, 403 ; clicks the area for organization
Sleep, 900
Send, {control down}{v}{control up} ; pastes
Sleep, 900
Click, 46, 72 ; Clicks send
Sleep, 900
Click, 655, 673, ; Clicks the bottom name
Sleep, 900
Send, {down}
}
Sleep, 3000
Click, 1346, 48 ; closes all windows
Sleep, 2000
Click, 1206, 466 ; hits exit
Sleep, 2000
Send, {LWin} ; opens chrome up
Sleep, 2500
Send, chrome
Sleep, 2500
Send, {enter}
Sleep, 8000
Send, https://email25.godaddy.com/webmail.php
Sleep, 500
Send, {enter}
Sleep, 2500
Click, 92, 500 ; clicks sent items
Sleep, 2500
Click, 356, 301 ; clicks latest
Sleep, 2500
Click, 370, 317 ; clicks email address
Sleep, 2500
Click, 329, 330 ; clicks email box
Sleep, 2500
Send, {shift down}{home}{shift up}{control down}{c}{control up} ; copies email
Click, 566, 14 ; exits that tab
Sleep, 2500
Send, {control down}{t}{control up}
Sleep, 2500
Send, https://docs.google.com/spreadsheets/d/1oJj7DvsQEHhZ5YiucT7WTU
Sleep, 2500
Send, {enter}
Sleep, 30000
Send, {control down}{f}{control up}
Sleep, 2500
Send, {control down}{v}{control up} ; searches the email
Sleep, 25000
Click, 1239, 242 ; exits find
Sleep, 2500
Send, {down} ; gets the next one up
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 25
Send, {down}
Sleep, 2500
Click, 979, 290 ; clicks latest email
Sleep, 2500
Send, {enter}{end}{shift down}{home}{shift up}{control down}{c}{control up} ; copies email
Sleep, 2500
Click, 141, 1 ; clicks on godaddy tab
Sleep, 2500
Click, 115, 460 ; clicks templates
Sleep, 2500
Click, 343, 0 ; clicks sheets tab
Sleep, 3000
Click, 800, 350 ; gets away from that cell
}
return
Esc::ExitApp
You can either provide a solution to why this isn't working or create a new non-AHK script.
Paying $25
If you need to contact me, PM me here or DM Xeniiox#4545 on Discord. Thanks.
