I have some code to send emails automatically.
The recipients are added by
objmessage.recipients.add("Test0@Test.com")
objmessage.recipients.add("Test1@Test.com")
objmessage.recipients.add("Test2@Test.com")
However, the email that has been created in Outlook has single quotes around the send addresses so... 'Test0@Test.com' - this causes undeliverable message.
How can I prevent the single quotes being added ?
Thanks in advance
The recipients are added by
objmessage.recipients.add("Test0@Test.com")
objmessage.recipients.add("Test1@Test.com")
objmessage.recipients.add("Test2@Test.com")
However, the email that has been created in Outlook has single quotes around the send addresses so... 'Test0@Test.com' - this causes undeliverable message.
How can I prevent the single quotes being added ?
Thanks in advance