hello
this work
$id = record\create( 'Email', 'from', 'from-address@test.com', 'to', 'to-address@test.com', 'subject', 'Test from formula', 'body', 'Hi,\n\nThis is a test.', 'isHtml', false, 'status', 'Sending' ); ext\email\send($id);
this work not
$id = record\create(
'Email',
'from', 'support@cvu-berlin.de',
'to', assignedUser.emailAddress,
'subject', 'Test from formula',
'body', 'Hi Peter,\n\nThis is a test.',
'isHtml', false,
'status', 'Sending'
);
ext\email\send($id);
the assigned user should receive a mail.
does anyone have an idea?
peter
this work
$id = record\create( 'Email', 'from', 'from-address@test.com', 'to', 'to-address@test.com', 'subject', 'Test from formula', 'body', 'Hi,\n\nThis is a test.', 'isHtml', false, 'status', 'Sending' ); ext\email\send($id);
this work not
$id = record\create(
'Email',
'from', 'support@cvu-berlin.de',
'to', assignedUser.emailAddress,
'subject', 'Test from formula',
'body', 'Hi Peter,\n\nThis is a test.',
'isHtml', false,
'status', 'Sending'
);
ext\email\send($id);
the assigned user should receive a mail.
does anyone have an idea?
peter
Comment