Ah ok, I see sorry about that I should have caught on to that you could just put HTML code right into the body.
Thanks again Marcus
Search found 26 matches
- Thu Dec 14, 2017 7:57 pm
- Forum: Technical / Scripting
- Topic: Sending Images in a HTML Body of an email
- Replies: 4
- Views: 3646
- Thu Dec 14, 2017 6:09 pm
- Forum: Technical / Scripting
- Topic: Sending Images in a HTML Body of an email
- Replies: 4
- Views: 3646
Re: Sending Images in a HTML Body of an email
Yes, I have done that but how do you load it into the code?
Code: Select all
Let>SMTP_HTMLBODY=1
Let>body=Let me know if you have any questions or comments. <-- {insert picture here type deal}
SMTPSendMail>email,server,email,Name,This is a test,%body%,
- Wed Dec 13, 2017 5:09 pm
- Forum: Technical / Scripting
- Topic: Sending Images in a HTML Body of an email
- Replies: 4
- Views: 3646
Sending Images in a HTML Body of an email
Hello, I was wondering if there is a way to send an image in the Body of an HTML email using the SMTPSendMail command? The main reason behind this is the signature that I normally use has my logo in it.
- Sat Oct 21, 2017 6:01 pm
- Forum: Technical / Scripting
- Topic: External exception E06D7363
- Replies: 0
- Views: 6620
External exception E06D7363
Ok, having a new problem with my Code whenever I run it I get an External exception E06D7363 the only thing that I have been able to find on it with Macro Scheduler is what Dorian pointed out, but I'm not using an image that I can control. https://www.mjtnet.com/forum/viewtopic.php?f=2&t=7679 Let>x=...
- Sat Oct 21, 2017 2:47 pm
- Forum: Technical / Scripting
- Topic: OCRArea Var??
- Replies: 2
- Views: 2542
Re: OCRArea Var??
Yep, the Trim got it darn invisible char lol, and normally I don't use all those Var's I was just doing that to rule out all possibilities. Here is the simplified version that works. OCRArea>373,108,475,128,strText Trim>strText,strText IF>%strText%="Freezing" //somecode Else //somecode Endif Thanks ...
- Sat Oct 21, 2017 3:59 am
- Forum: Technical / Scripting
- Topic: OCRArea Var??
- Replies: 2
- Views: 2542
OCRArea Var??
Ok, I have either found a bug, or I'm just missing something extremely silly. I'm having an issue trying to run the results of the ORCArea through an IF statement. I have tried every combination that I can think of. The Image that I'm scanning can have four words appear Freezing, Cold, Warm, and Boi...
- Thu Jun 22, 2017 7:44 pm
- Forum: Beginners
- Topic: LDown & LUp Not Working??
- Replies: 1
- Views: 3033
Re: LDown Not Working??
----------------------------------------------------------------------------------------------------------
- Thu Jun 22, 2017 7:36 pm
- Forum: Beginners
- Topic: LDown & LUp Not Working??
- Replies: 1
- Views: 3033
LDown & LUp Not Working??
Hello, Trying to write a simple program that just moves the mouse to a spot holds down the left click and then drags an item to another place, and let's go. It worked for one iteration of what I'm doing but now for some reason it never lets go of the left click. So when it tries to grab the next ite...
- Mon Apr 17, 2017 6:03 pm
- Forum: Beginners
- Topic: Validate A Var
- Replies: 1
- Views: 2932
Re: Validate A Var
Never mind I found a way to do it with the Format
Had to add in
with this any letter or special char in the string will put the value to a 0
Had to add in
Code: Select all
Format>%d,deliveryDate,result
- Mon Apr 17, 2017 5:31 pm
- Forum: Beginners
- Topic: Validate A Var
- Replies: 1
- Views: 2932
Validate A Var
Is there a way to ensure the user has inputted a number in a dialog box? So far i have came up with this but no matter what i put in it says its good. object MSMemo5: tMSMemo Left = 16 Top = 344 Width = 241 Height = 21 Hint = 'Put in how many weeks it will take to be delivered.' Text = 'Delivery Dat...
- Thu Mar 30, 2017 6:46 pm
- Forum: Technical / Scripting
- Topic: Tell it to write X and it puts a 0
- Replies: 4
- Views: 4701
Re: Tell it to write X and it puts a 0
Yep for some reason that worked Don't know why it did that It was working perfectly fine then i added one section to it and it started to flip out. Thanks for the help
- Thu Mar 30, 2017 2:30 pm
- Forum: Technical / Scripting
- Topic: Tell it to write X and it puts a 0
- Replies: 4
- Views: 4701
Re: Tell it to write X and it puts a 0
I searched all through my code and i'm not writing to a var X. I think i'm just going to write a 1 or 0 in that block instead of a X and Y and give it a shot
- Thu Mar 30, 2017 1:19 pm
- Forum: Technical / Scripting
- Topic: Tell it to write X and it puts a 0
- Replies: 4
- Views: 4701
Tell it to write X and it puts a 0
I have a backup program running and I use a excel sheet to track the progress of it in case it gets interrupted I can just restart and it will pick up where it left off. I'm using this bit of code to write to a cell in the spreadsheet the problem is that i'm telling it to write a X and its putting a...
- Tue Mar 28, 2017 8:56 pm
- Forum: Beginners
- Topic: Declare a Multidimensional Array
- Replies: 2
- Views: 4416
Re: Declare a Multidimensional Array
Its a lot of code to write out but it works like a charm thanks for the help
- Tue Mar 28, 2017 1:16 pm
- Forum: Beginners
- Topic: Declare a Multidimensional Array
- Replies: 2
- Views: 4416
Declare a Multidimensional Array
Sorry for a noob question but i can't find this anywhere. I know you can create a multidimensional array by importing something from an excel sheet but is there a way of declaring one in the program. ArrayDim>List,13_13 Let>List_1_1=%a% Let>List_1_2=%shortText% Let>List_1_3=%quantity% Let>List_1_4=%...